        /* Ronabet Footer Section Styles */
        .ronabet-footer {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
            color: #ffffff;
            padding: 60px 0 0 0;
            position: relative;
            overflow: hidden;
        }

        .ronabet-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #c026d3, #ec4899, transparent);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Footer Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        /* Logo ve Açıklama Bölümü */
        .footer-about {
            padding-right: 20px;
        }

        .footer-logo {
            width: 180px;
            margin-bottom: 25px;
            filter: drop-shadow(0 4px 20px rgba(165, 125, 255, 11.3));
        }

        .footer-description {
            color: #b4b4b4;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c026d3, #ec4899);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-links a:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(192, 38, 211, 0.4);
        }

        /* Footer Kolonları */
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 25px;
            color: #ffffff;
            font-weight: 600;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #c026d3, #ec4899);
            border-radius: 2px;
        }

        .footer-column ul {
            list-style: none;
            padding:0px;
        }

        .footer-column ul li {
            margin-bottom: 14px;
        }

        .footer-column ul li a {
            color: #b4b4b4;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: #ec4899;
            transform: translateX(5px);
        }

        /* Ödeme Yöntemleri Bölümü */
        .payment-methods {
            margin-top: 20px;
        }

        .payment-title {
            font-size: 14px;
            color: #b4b4b4;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }

        .payment-item {
            background: rgb(210 210 210 / 98%);
            border: 1px solid rgba(192, 38, 211, 0.2);
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 45px;
            transition: all 0.3s ease;
        }

        .payment-item:hover {
            background: rgba(192, 38, 211, 0.1);
            border-color: rgba(192, 38, 211, 0.4);
            transform: translateY(-2px);
        }

        .payment-item img {
            max-width: 100%;
            max-height: 30px;
            object-fit: contain;
        }

        /* Crypto Icons */
        .crypto-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .crypto-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(192, 38, 211, 0.2);
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 11px;
            color: #b4b4b4;
            transition: all 0.3s ease;
        }

        .crypto-badge:hover {
            background: rgba(192, 38, 211, 0.1);
            border-color: rgba(192, 38, 211, 0.4);
            color: #ec4899;
        }

        /* Lisans ve Güvenlik Bölümü */
        .security-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .badge-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(192, 38, 211, 0.2);
            border-radius: 8px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            min-width: 80px;
        }

        .badge-item:hover {
            background: rgba(192, 38, 211, 0.1);
            border-color: rgba(192, 38, 211, 0.4);
            transform: translateY(-2px);
        }

        .age-badge {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c026d3, #ec4899);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

        /* Lisans Bilgisi */
        .license-info {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(192, 38, 211, 0.2);
            border-radius: 10px;
            padding: 20px;
            margin-top: 10px;
        }

        .license-info p {
            font-size: 12px;
            color: #b4b4b4;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .license-info strong {
            color: #ec4899;
        }

        /* Alt Kısım */
        .footer-bottom {
            border-top: 1px solid rgba(192, 38, 211, 0.2);
            padding: 30px 0;
            margin-top: 50px;
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #b4b4b4;
            font-size: 13px;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #b4b4b4;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ec4899;
        }

        .responsible-gaming {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #b4b4b4;
            font-size: 13px;
        }

        .responsible-gaming i {
            color: #ec4899;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-container {
                padding: 0 20px;
            }

            .ronabet-footer {
                padding: 40px 0 0 0;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .payment-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .payment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    /* Serviços Page Styles */
    .ronabet-services {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #ffffff;
        padding: 80px 0;
        color: #1a1a2e;
    }

    .services-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* Hero Section */
    .services-hero {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
    }

    .services-hero::before {
        content: '';
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #c026d3, #ec4899);
        border-radius: 2px;
    }

    .services-hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a1a2e;
    }

    .services-hero p {
        font-size: 18px;
        color: #666666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        padding: 40px 35px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #c026d3, #ec4899);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        background: #faf5ff;
        border-color: #c026d3;
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(192, 38, 211, 0.15);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f3e8ff, #fce7f3);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 32px;
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
        background: linear-gradient(135deg, #c026d3, #ec4899);
        transform: rotate(360deg) scale(1.1);
    }

    .service-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #c026d3, #ec4899);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .service-card h3 {
        font-size: 26px;
        margin-bottom: 15px;
        color: #1a1a2e;
        font-weight: 600;
    }

    .service-card p {
        color: #666666;
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 15px;
    }

    .service-features {
        list-style: none;
        margin-top: 25px;
    }

    .service-features li {
        color: #666666;
        padding: 10px 0;
        display: flex;
        align-items: center;
        font-size: 14px;
        border-bottom: 1px solid #f3f4f6;
    }

    .service-features li:last-child {
        border-bottom: none;
    }

    .service-features li i {
        color: #ec4899;
        margin-right: 12px;
        font-size: 16px;
    }

    .service-cta {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 30px;
        background: linear-gradient(135deg, #c026d3, #ec4899);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .service-cta:hover {
        background: transparent;
        border-color: #ec4899;
        transform: translateX(5px);
    }

    /* Games Section */
    .games-section {
        margin-top: 80px;
        text-align: center;
    }

    .games-section h2 {
        font-size: 38px;
        margin-bottom: 20px;
        color: #1a1a2e;
    }

    .games-section p {
        color: #666666;
        margin-bottom: 50px;
        font-size: 16px;
    }

    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .game-category {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        padding: 30px 20px;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .game-category:hover {
        background: #faf5ff;
        border-color: #c026d3;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(192, 38, 211, 0.15);
    }

    .game-category i {
        font-size: 40px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #c026d3, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .game-category h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #1a1a2e;
    }

    .game-category p {
        font-size: 13px;
        color: #666666;
        margin: 0;
    }

    /* Feature Banner */
    .feature-banner {
        margin-top: 80px;
        background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 50%, #c2185b 100%);
        border: none;
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .feature-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://ronabetacesso.com/wp-content/uploads/16x9.png') center/cover;
        opacity: 0.15;
        z-index: 0;
    }

    .feature-banner-content {
        position: relative;
        z-index: 1;
    }

    .feature-banner h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .feature-banner p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-banner .service-cta {
        font-size: 16px;
        padding: 15px 40px;
    }

    /* Stats Section */
    .stats-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 80px;
    }

    .stat-card {
        text-align: center;
        padding: 30px 20px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .stat-card:hover {
        background: #faf5ff;
        border-color: #c026d3;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(192, 38, 211, 0.15);
    }

    .stat-number {
        font-size: 42px;
        font-weight: 700;
        background: linear-gradient(135deg, #c026d3, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #666666;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .services-hero h1 {
            font-size: 36px;
        }

        .services-hero p {
            font-size: 16px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .services-container {
            padding: 0 20px;
        }

        .ronabet-services {
            padding: 50px 0;
        }

        .games-grid {
            grid-template-columns: 1fr;
        }

        .feature-banner {
            padding: 40px 25px;
        }

        .feature-banner h2 {
            font-size: 28px;
        }
    }