* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }
h4 { font-weight: 500; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 50px 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.header p {
    color: #b8c5d6;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px 0 35px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(30, 40, 69, 0.6), rgba(42, 53, 88, 0.6));
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.trust-icon.verified {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.trust-icon.fast-payouts {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.trust-icon.trusted-partners {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.trust-text {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.disclaimer {
    text-align: center;
    margin: 15px 0 25px 0;
}

.disclaimer p {
    color: #8a9bb8;
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.9;
}

.casino-card {
    background: linear-gradient(145deg, #1e2845 0%, #2a3558 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.casino-card.top-choice {
    border: 3px solid #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
}

.casino-card.editors-pick {
    border: 3px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
}

.casino-card.popular {
    border: 3px solid #4ecdc4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
}

.badge {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: -5px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 0 0 15px 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge.top-choice {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.badge.editors-pick {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.badge.popular {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.rank {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.casino-info {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.casino-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #343a52, #3f4966);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

a.casino-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

a.casino-logo:hover {
    transform: scale(1.05);
}

a.bonus-section {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

a.bonus-section:hover {
    transform: scale(1.02);
}

.casino-details h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.stars {
    color: #ffd93d;
    margin-right: 8px;
}

.score {
    font-weight: bold;
    color: #ffffff;
}

.reviews {
    font-size: 0.75rem;
    color: #8a9bb8;
    margin-top: 2px;
}

.visit-link {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 0.9rem;
}

.visit-link:hover {
    text-decoration: underline;
}

.features {
    flex: 1;
    max-width: 300px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.checkmark {
    color: #4ecdc4;
    margin-right: 10px;
    font-weight: bold;
}

.offer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 20px;
    width: 320px;
    flex-shrink: 0;
}

.bonus-section {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bonus-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}

.bonus-subtitle {
    font-size: 0.8rem;
    color: #ffd93d;
    margin-bottom: 0;
}

.play-btn-container {
    text-align: center;
}

.play-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.play-btn:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.casino-disclaimer {
    margin-top: 10px;
    text-align: center;
}

.casino-disclaimer p {
    color: #8a9bb8;
    font-size: 0.7rem;
    line-height: 1.3;
    opacity: 0.8;
    font-style: italic;
}

.casino-disclaimer a {
    color: #4ecdc4;
    text-decoration: none;
}

.casino-disclaimer a:hover {
    text-decoration: underline;
}

.author-section {
    background: linear-gradient(135deg, #1e2845, #2a3558);
    border-radius: 20px;
    padding: 35px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-left: 5px solid #4ecdc4;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.author-section::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 3rem;
    color: #4ecdc4;
    opacity: 0.3;
    font-family: serif;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    flex: 1;
    margin-left: 15px;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-left: 15px;
}

.info-section {
    background: linear-gradient(135deg, #1e2845, #2a3558);
    border-radius: 15px;
    padding: 35px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-section p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-list {
    margin: 25px 0;
}

.info-list .feature {
    margin-bottom: 12px;
}

.footer {
    background: linear-gradient(135deg, #0f1419, #1a1a2e);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #4ecdc4;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 10px 50px 10px;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .casino-info {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .rank {
        margin-right: 15px;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* New mobile layout: rank + logo on same line */
    .casino-card .rank {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
    }

    .casino-logo {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px auto;
        display: block;
    }

    .casino-details {
        margin-top: 10px;
        text-align: center;
    }

    .badge {
        left: 50%;
        transform: translateX(-50%);
        top: -3px;
    }

    .offer-section {
        margin: 20px 0 0 0;
        width: 100%;
    }

    .author-section {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .author-section::before {
        display: none;
    }

    .author-info {
        margin-left: 0;
    }

    .author-info p {
        margin-left: 0;
    }

    .info-section {
        padding: 25px 20px;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .trust-badges {
        gap: 15px;
        margin: 20px 0 30px 0;
        padding: 12px 8px;
    }

    .trust-item {
        gap: 6px;
        padding: 5px 8px;
    }

    .trust-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .trust-text {
        font-size: 0.75rem;
    }

    .disclaimer {
        margin: 10px 0 20px 0;
        padding: 0 10px;
    }

    .disclaimer p {
        font-size: 0.75rem;
    }

    .casino-disclaimer {
        margin-top: 8px;
    }

    .casino-disclaimer p {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .reviews {
        font-size: 0.7rem;
    }

    .detailed-reviews h2 {
        font-size: 1.6rem;
    }

    .detailed-review-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .review-logo {
        width: 50px;
        height: 50px;
    }

    .review-title h3 {
        font-size: 1.2rem;
    }

    .review-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-column h4 {
        font-size: 1rem;
    }

    .highlight-column li {
        font-size: 0.85rem;
    }

    /* Mobile Screenshot Styles */
    .casino-screenshot {
        margin: 20px 0;
    }

    .casino-screenshot h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        padding-bottom: 6px;
    }

    .screenshot-container {
        padding: 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .screenshot-container img {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .screenshot-container img:hover {
        transform: scale(1.01);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    .screenshot-caption {
        font-size: 0.85rem;
        margin-top: 12px;
        line-height: 1.3;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Mobile Bonus Breakdown Styles */
    .bonus-breakdown {
        margin: 20px 0;
    }

    .bonus-breakdown h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .bonus-structure {
        gap: 10px;
        margin-bottom: 15px;
    }

    .bonus-tier {
        padding: 12px;
        min-width: auto;
    }

    .tier-label {
        font-size: 0.75rem;
    }

    .tier-bonus {
        font-size: 1.2rem;
    }

    .tier-spins {
        font-size: 0.75rem;
    }

    .bonus-extras {
        gap: 10px;
    }

    .referral-bonus, .total-bonus {
        padding: 10px;
        font-size: 0.8rem;
    }

    .total-amount {
        font-size: 1rem;
    }

    /* Mobile Payment Methods Styles */
    .payment-methods {
        margin: 20px 0;
        padding: 20px;
    }

    .payment-methods h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-methods-list {
        gap: 8px;
    }

    .payment-method {
        padding: 10px 12px;
        min-width: auto;
        flex: 1 1 calc(50% - 4px);
        font-size: 0.85rem;
    }

    .payment-icon {
        font-size: 1rem;
        width: 20px;
    }

    .payment-name {
        font-size: 0.8rem;
    }

    .payment-details {
        gap: 12px;
    }

    .payment-detail {
        padding: 12px;
    }

    .detail-icon {
        font-size: 1.1rem;
        width: 25px;
    }

    .detail-text {
        font-size: 0.85rem;
    }

    /* Mobile Review CTA Styles */
    .review-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .review-logo {
        margin: 0 auto;
        display: block;
    }

    .review-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .review-cta-top {
        align-items: center;
        justify-content: center;
        margin-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .review-play-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: auto;
        justify-content: center;
        min-width: 180px;
        margin: 0 auto;
        display: flex;
    }

    .quick-bonus {
        font-size: 0.7rem;
        padding: 6px 12px;
        text-align: center;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .review-bottom-cta {
        margin-top: 20px;
        padding: 20px;
    }

    .bottom-cta-content {
        gap: 15px;
    }

    .cta-info h4 {
        font-size: 1.1rem;
    }

    .cta-info p {
        font-size: 0.9rem;
    }

    .review-play-btn-large {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-disclaimer p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Enhanced Mobile Detailed Review Card Styles */
    .detailed-reviews h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .detailed-review-card {
        margin: 0 -10px 20px -10px;
        padding: 20px;
        border-radius: 15px;
    }

    .review-logo {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        padding: 6px;
    }

    .review-title h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .review-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
        border-radius: 12px;
    }

    .review-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    /* Mobile Casino Screenshot Improvements */
    .casino-screenshot h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-bottom: 5px;
    }

    .screenshot-container {
        padding: 12px;
        border-radius: 12px;
    }

    .screenshot-container img {
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    }

    .screenshot-caption {
        font-size: 0.8rem;
        margin-top: 10px;
        padding: 0 5px;
        line-height: 1.2;
    }

    /* Mobile Bonus Breakdown Improvements */
    .bonus-breakdown {
        margin: 15px -5px;
        padding: 18px;
        border-radius: 12px;
    }

    .bonus-breakdown h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-bottom: 5px;
    }

    .bonus-structure {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }

    .bonus-tier {
        padding: 12px;
        border-radius: 8px;
        min-width: auto;
        width: 100%;
    }

    .tier-label {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .tier-bonus {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .tier-spins {
        font-size: 0.75rem;
    }

    .bonus-extras {
        flex-direction: column;
        gap: 8px;
    }

    .referral-bonus, .total-bonus {
        padding: 12px;
        border-radius: 8px;
        width: 100%;
    }

    .referral-text {
        font-size: 0.8rem;
    }

    .total-label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .total-amount {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .wagering {
        font-size: 0.7rem;
    }

    /* Mobile Fortunica Bonus Styles */
    .bonus-tier.welcome-bonus,
    .bonus-tier.highroller-bonus,
    .bonus-tier.weekly-bonus,
    .bonus-tier.weekly-cashback {
        margin-bottom: 8px;
    }

    .fortunica-total {
        padding: 12px;
        text-align: center;
    }

    /* Mobile Slots Charm Bonus Styles */
    .bonus-tier.slots-charm-tier1,
    .bonus-tier.slots-charm-tier2,
    .bonus-tier.slots-charm-tier3,
    .bonus-tier.slots-charm-sport {
        margin-bottom: 8px;
    }

    .slots-charm-total {
        padding: 12px;
        text-align: center;
    }

    /* Mobile Payment Methods Improvements */
    .payment-methods {
        margin: 15px -5px;
        padding: 18px;
        border-radius: 12px;
    }

    .payment-methods h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-bottom: 5px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-methods-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .payment-method {
        padding: 10px;
        border-radius: 8px;
        min-width: auto;
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .payment-icon {
        font-size: 1.1rem;
        width: auto;
    }

    .payment-name {
        font-size: 0.75rem;
    }

    .payment-details {
        gap: 10px;
    }

    .payment-detail {
        padding: 12px;
        border-radius: 8px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .detail-icon {
        font-size: 1.2rem;
        width: auto;
    }

    .detail-text {
        font-size: 0.8rem;
    }

    /* Mobile Review Highlights Improvements */
    .review-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-column {
        width: 100%;
    }

    .highlight-column h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .highlight-column li {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 6px;
        padding-left: 18px;
    }

    .highlight-column li::before {
        left: 0;
        font-size: 0.8rem;
    }

    /* Mobile Spacing and Layout Improvements */
    .review-content > * {
        margin-bottom: 15px;
    }

    .review-content > *:last-child {
        margin-bottom: 0;
    }

    /* Enhanced Mobile Readability */
    .review-title {
        text-align: center;
        width: 100%;
    }

    .review-badge {
        margin-top: 5px;
        display: inline-block;
    }
}

/* Additional breakpoint for very small screens */
@media (max-width: 480px) {
    .container {
        padding: 15px 5px 40px 5px;
    }

    .trust-badges {
        gap: 8px;
        margin: 15px 0 25px 0;
        padding: 10px 5px;
        flex-wrap: wrap;
    }

    .trust-item {
        gap: 4px;
        padding: 4px 6px;
        flex: 0 1 auto;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .trust-text {
        font-size: 0.7rem;
    }

    /* Mobile casino card optimizations */
    .casino-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .casino-card .rank {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 20px;
        left: 15px;
    }

    .casino-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px auto;
        display: block;
    }

    .casino-details {
        margin-top: 5px;
    }

    .badge {
        left: 50%;
        transform: translateX(-50%);
        top: -3px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .detailed-review-card {
        margin: 0 0 15px 0;
        padding: 15px;
    }

    .payment-methods-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .payment-method {
        padding: 8px;
        font-size: 0.75rem;
    }

    .bonus-structure {
        gap: 6px;
    }

    .bonus-tier {
        padding: 10px;
    }

    .tier-bonus {
        font-size: 1.2rem;
    }

    .review-play-btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cta-info h4 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .cta-info p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    /* Enhanced Mobile Header Centering for Small Screens */
    .review-header {
        padding: 15px 10px;
        margin-bottom: 15px;
    }

    .review-logo {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px auto;
    }

    .review-title {
        margin-bottom: 12px;
    }

    .review-title h3 {
        font-size: 1rem;
        margin-bottom: 6px;
        text-align: center;
    }

    .review-badge {
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }

    .review-cta-top {
        gap: 8px;
        padding: 0 10px;
    }

    .review-play-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 160px;
        border-radius: 20px;
    }

    .quick-bonus {
        font-size: 0.65rem;
        padding: 4px 8px;
        border-radius: 10px;
        max-width: 200px;
    }
}

/* Terms & Conditions Page Styles */
.navigation {
    margin-bottom: 30px;
    text-align: center;
}

.nav-link {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border: 1px solid #4ecdc4;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    background: #4ecdc4;
    color: #1a1a2e;
    text-decoration: none;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    background: linear-gradient(135deg, #1e2845, #2a3558);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.terms-section h2 {
    color: #4ecdc4;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 8px;
}

.terms-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.terms-section p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-list {
    color: #b8c5d6;
    margin: 15px 0 15px 20px;
}

.terms-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms-list li::marker {
    color: #4ecdc4;
}

.contact-info {
    background: rgba(78, 205, 196, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4ecdc4;
}

.contact-info a {
    color: #4ecdc4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.last-updated p {
    color: #8a9bb8;
    font-size: 0.9rem;
    margin: 0;
}

/* Detailed Reviews Section */
.detailed-reviews {
    margin: 40px 0;
}

.detailed-reviews h2 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detailed-review-card {
    background: linear-gradient(135deg, #1e2845, #2a3558);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.review-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #343a52, #3f4966);
    border-radius: 12px;
    padding: 8px;
    object-fit: contain;
}

.review-title h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.review-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.review-badge.top-choice {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.review-badge.editors-pick {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.review-badge.popular {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.review-content p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.review-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.highlight-column h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 5px;
}

.highlight-column ul {
    list-style: none;
    padding: 0;
}

.highlight-column li {
    color: #b8c5d6;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.highlight-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Bonus Breakdown Styles */
.bonus-breakdown {
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(30, 40, 69, 0.4), rgba(42, 53, 88, 0.4));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.bonus-breakdown h4 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 8px;
    text-align: center;
}

.bonus-structure {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-tier {
    background: linear-gradient(145deg, #343a52, #3f4966);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 120px;
}

.bonus-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.bonus-tier.first-deposit {
    border-top: 3px solid #4ecdc4;
}

.bonus-tier.second-deposit {
    border-top: 3px solid #667eea;
}

.bonus-tier.third-deposit {
    border-top: 3px solid #ff6b35;
}

.tier-label {
    color: #b8c5d6;
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.tier-bonus {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.tier-spins {
    color: #ffd93d;
    font-size: 0.8rem;
    font-weight: 500;
}

.bonus-extras {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.referral-bonus, .total-bonus {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    flex: 1;
    text-align: center;
}

.referral-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.referral-icon {
    font-size: 1.2rem;
}

.referral-text {
    color: #b8c5d6;
    font-size: 0.9rem;
    font-weight: 500;
}

.total-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.total-label {
    color: #b8c5d6;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.total-amount {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

.wagering {
    color: #ffd93d;
    font-size: 0.75rem;
    font-style: italic;
}

/* Fortunica Bonus Styles */
.bonus-tier.welcome-bonus {
    border-top: 3px solid #4ecdc4;
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.1));
}

.bonus-tier.highroller-bonus {
    border-top: 3px solid #e74c3c;
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
}

.bonus-tier.weekly-bonus {
    border-top: 3px solid #f39c12;
    background: linear-gradient(145deg, rgba(243, 156, 18, 0.1), rgba(230, 126, 34, 0.1));
}

.bonus-tier.weekly-cashback {
    border-top: 3px solid #667eea;
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.fortunica-total {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.4);
}

/* Slots Charm Bonus Styles */
.bonus-tier.slots-charm-tier1 {
    border-top: 3px solid #4ecdc4;
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.1));
}

.bonus-tier.slots-charm-tier2 {
    border-top: 3px solid #44a08d;
    background: linear-gradient(145deg, rgba(68, 160, 141, 0.1), rgba(47, 128, 237, 0.1));
}

.bonus-tier.slots-charm-tier3 {
    border-top: 3px solid #2f80ed;
    background: linear-gradient(145deg, rgba(47, 128, 237, 0.1), rgba(102, 126, 234, 0.1));
}

.bonus-tier.slots-charm-sport {
    border-top: 3px solid #ff6b35;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.slots-charm-total {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(68, 160, 141, 0.2));
    border: 1px solid rgba(78, 205, 196, 0.4);
}

/* Payment Methods Styles */
.payment-methods {
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(30, 40, 69, 0.4), rgba(42, 53, 88, 0.4));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.payment-methods h4 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 8px;
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-method {
    background: linear-gradient(145deg, #343a52, #3f4966);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 120px;
    flex: 1;
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.payment-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.payment-icon.visa, .payment-icon.mastercard {
    color: #4ecdc4;
}

.payment-icon.apple-pay {
    color: #ffffff;
}

.payment-icon.binance-pay {
    color: #f0b90b;
    font-weight: bold;
}

.payment-icon.bitcoin {
    color: #f7931a;
    font-weight: bold;
}

.payment-icon.ethereum {
    color: #627eea;
    font-weight: bold;
}

.payment-name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-detail {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.payment-detail:hover {
    transform: translateX(3px);
    border-color: rgba(78, 205, 196, 0.4);
}

.detail-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.detail-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Review CTA Buttons Styles */
.review-header {
    position: relative;
    align-items: flex-start;
}

.review-cta-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
}

.review-play-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    font-size: 0.9rem;
    white-space: nowrap;
}

.review-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.quick-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ffd93d;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 15px;
    text-align: center;
    white-space: nowrap;
}

.review-bottom-cta {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.bottom-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.cta-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cta-info p {
    color: #b8c5d6;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.review-play-btn-large {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.review-play-btn-large:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: white;
    text-decoration: none;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.review-play-btn:hover .btn-arrow,
.review-play-btn-large:hover .btn-arrow {
    transform: translateX(3px);
}

.cta-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.cta-disclaimer p {
    color: #8a9bb8;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

.cta-disclaimer a {
    color: #4ecdc4;
    text-decoration: none;
}

.cta-disclaimer a:hover {
    text-decoration: underline;
}

/* Casino Screenshot Styles */
.casino-screenshot {
    margin: 30px 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.casino-screenshot h4 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 8px;
    text-align: center;
    width: fit-content;
}

.screenshot-container {
    background: linear-gradient(145deg, #343a52, #3f4966);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.screenshot-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.screenshot-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.screenshot-caption {
    color: #b8c5d6;
    font-size: 0.95rem;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.9;
    text-align: center;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
} 