.borsa-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 20px;
    background: #f8f8f8;
}

/* Kart kutusu */
.borsa-card {
    background: #0c1b2a;
    border-radius: 16px;
    width: 180px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    text-align: center;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Yıldızlar */
.borsa-stars {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #fff;
    color: #f39c12;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
}

.borsa-stars .star {
    font-size: 16px;
}

/* Logo kısmı */
.borsa-logo-container {
    width: 100%;
    height: 180px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.borsa-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Borsa ismi */
.borsa-name {
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    background: #0c1b2a;
}

/* Features Stilleri - GÜNCELLENDİ */
.borsa-features {
    padding: 0 10px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.feature-badge {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px; /* Küçültüldü */
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

/* read more dış buton */
.borsa-readmore-wrapper {
    width: 250px;
    text-align: center;
    margin-top: 10px;
}

.borsa-button {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f0f0;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
}
.borsa-button:hover {
    background: #eae9e9;
}

/* New Guide Styles */
.kripto-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.kripto-guide-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.kripto-guide-title {
    color: #0c1b2a;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.kripto-guide-intro {
    font-size: 16px;
    margin-bottom: 20px;
}

.kripto-guide-step-title {
    color: #0c1b2a;
    font-size: 22px;
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.kripto-guide-step-content {
    font-size: 16px;
    margin-bottom: 15px;
}

.kripto-guide-subtitle {
    color: #0c1b2a;
    font-size: 18px;
    margin: 20px 0 10px;
}

.kripto-guide-warning {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    font-size: 15px;
    margin: 20px 0;
}

.kripto-payment-methods {
    overflow-x: auto;
    margin: 20px 0;
}

.kripto-payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.kripto-payment-table th, 
.kripto-payment-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.kripto-payment-table th {
    background-color: #0c1b2a;
    color: white;
}

.kripto-payment-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.kripto-coin-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.kripto-coin-list li {
    margin-bottom: 8px;
}

.kripto-guide-note {
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.kripto-warning-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.kripto-warning-list li {
    margin-bottom: 10px;
}

.kripto-guide-disclaimer {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 15px;
    font-size: 14px;
    margin: 25px 0 10px;
}

@media (max-width: 768px) {
    .kripto-guide-container {
        padding: 10px;
    }
    
    .kripto-guide-section {
        padding: 15px;
    }
    
    .kripto-guide-title {
        font-size: 24px;
    }
    
    .kripto-guide-step-title {
        font-size: 20px;
    }
}