/* EliteTopPlay - Glassmorphism Design */
:root {
    --primary-purple: #6B46C1;
    --primary-deep: #5B21B6;
    --secondary-cyan: #06B6D4;
    --accent-pink: #EC4899;
    --accent-pink-light: #F9A8D4;
    --bg-gradient-start: #F0F9FF;
    --bg-gradient-end: #FAF5FF;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --text-dark: #1E293B;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    --neutral-light: #F8FAFC;
    --neutral-mid: #E2E8F0;
}

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

body {
    font-family: 'Inter', 'Poppins', -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Preloader with glassmorphism */
.elitetopplay-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(6, 182, 212, 0.95) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.elitetopplay-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--accent-pink);
    border-radius: 50%;
    animation: elitetopplay-spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

@keyframes elitetopplay-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation with glass effect */
.elitetopplay-navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.15);
}

.elitetopplay-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
}

.elitetopplay-navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.elitetopplay-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    padding: 22px 0;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.elitetopplay-logo img {
    width: auto;
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 8px rgba(107, 70, 193, 0.3));
}

.elitetopplay-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.elitetopplay-navbar-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
}

.elitetopplay-bar {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    position: relative;
}

.elitetopplay-navbar-toggle.active .elitetopplay-bar:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.elitetopplay-navbar-toggle.active .elitetopplay-bar:nth-child(2) {
    opacity: 0;
}

.elitetopplay-navbar-toggle.active .elitetopplay-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

.elitetopplay-navbar-menu {
    display: flex;
}

@media (min-width: 769px) {
    .elitetopplay-navbar-header {
        width: auto;
    }
}

.elitetopplay-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 5px;
}

.elitetopplay-nav-list li {
    margin: 0;
}

.elitetopplay-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 22px 20px;
    display: block;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.elitetopplay-nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.elitetopplay-nav-link:hover {
    color: var(--primary-purple);
}

.elitetopplay-nav-link:hover::after {
    transform: scaleX(1);
}

.elitetopplay-nav-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
    position: relative;
    overflow: hidden;
}

.elitetopplay-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.elitetopplay-nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.5);
    color: var(--text-white);
}

.elitetopplay-nav-cta:hover::before {
    left: 100%;
}

/* Hero Section with glass card */
.elitetopplay-hero {
    background: url('../images/poker.webp') no-repeat center center;
    background-size: cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin-top: 70px;
    position: relative;
}

.elitetopplay-hero-overlay {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.75) 0%, rgba(6, 182, 212, 0.65) 100%);
    width: 100%;
    padding: 120px 0;
    backdrop-filter: blur(3px);
}

.elitetopplay-hero-content {
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 30px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.elitetopplay-hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -1px;
}

.elitetopplay-hero-description {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.elitetopplay-hero-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.elitetopplay-hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: var(--text-white);
    color: var(--primary-purple);
}

/* Sections */
.elitetopplay-platforms,
.elitetopplay-about {
    padding: 100px 0;
}

.elitetopplay-platforms {
    background: transparent;
}

.elitetopplay-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.elitetopplay-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Platform Cards with glass effect */
.elitetopplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.elitetopplay-platform-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.elitetopplay-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink), var(--secondary-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elitetopplay-platform-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.elitetopplay-platform-card:hover::before {
    opacity: 1;
}

.elitetopplay-card-header {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.85) 0%, rgba(91, 33, 182, 0.9) 100%);
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.elitetopplay-platform-name {
    color: var(--text-white);
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.elitetopplay-card-body {
    padding: 30px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.15);
}

.elitetopplay-card-body p {
    color: var(--text-dark);
    margin-bottom: 22px;
    line-height: 1.7;
    font-weight: 500;
}

.elitetopplay-features-list {
    list-style: none;
    padding: 0;
}

.elitetopplay-features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.elitetopplay-features-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 22px;
}

.elitetopplay-card-footer {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.2);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.elitetopplay-platform-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.elitetopplay-platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.elitetopplay-platform-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.5);
    color: var(--text-white);
}

.elitetopplay-platform-btn:hover::before {
    left: 100%;
}

/* About Section with floating glass panels */
.elitetopplay-about {
    background: transparent;
    position: relative;
}

.elitetopplay-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.elitetopplay-about-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 8s ease-in-out infinite;
}

.elitetopplay-about-item:nth-child(2) {
    animation-delay: -2s;
}

.elitetopplay-about-item:nth-child(3) {
    animation-delay: -4s;
}

.elitetopplay-about-item:nth-child(4) {
    animation-delay: -6s;
}

.elitetopplay-about-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.elitetopplay-about-icon {
    font-size: 55px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    display: inline-block;
}

.elitetopplay-about-item h3 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.elitetopplay-about-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500;
}

/* Contact Section with glass form */
.elitetopplay-contact {
    background: url('../images/contact-bg.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

.elitetopplay-contact-overlay {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.82) 0%, rgba(6, 182, 212, 0.78) 100%);
    padding: 100px 0;
    backdrop-filter: blur(5px);
}

.elitetopplay-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.elitetopplay-contact-info {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.elitetopplay-contact-info h2 {
    font-size: 38px;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.elitetopplay-contact-info p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.elitetopplay-contact-details {
    margin-top: 35px;
}

.elitetopplay-contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-weight: 500;
}

.elitetopplay-contact-details i {
    margin-right: 15px;
    font-size: 20px;
    color: var(--accent-pink-light);
}

.elitetopplay-contact-form-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.elitetopplay-form-group {
    margin-bottom: 22px;
}

.elitetopplay-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.elitetopplay-form-control:focus {
    outline: none;
    border-color: var(--accent-pink);
    background: var(--text-white);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
}

.elitetopplay-textarea {
    resize: vertical;
    min-height: 130px;
}

.elitetopplay-submit-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
    position: relative;
    overflow: hidden;
}

.elitetopplay-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.elitetopplay-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.5);
}

.elitetopplay-submit-btn:hover::before {
    left: 100%;
}

.elitetopplay-success-message {
    display: none;
    background: rgba(74, 222, 128, 0.9);
    color: var(--text-white);
    padding: 22px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    margin-top: 22px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

/* Footer with frosted glass */
.elitetopplay-footer {
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--text-white);
    padding: 50px 0 35px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.elitetopplay-footer-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.elitetopplay-disclaimer {
    font-size: 19px;
    margin-bottom: 22px;
    color: var(--accent-pink-light);
    font-weight: 700;
}

.elitetopplay-description {
    font-size: 15px;
    opacity: 0.85;
}

.elitetopplay-cookies {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 22px;
}

.elitetopplay-cookies a {
    color: var(--accent-pink-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.elitetopplay-cookies a:hover {
    color: var(--text-white);
}

.elitetopplay-footer-links {
    margin: 30px 0;
}

.elitetopplay-footer-links a {
    color: var(--accent-pink-light);
    text-decoration: none;
    margin: 0 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.elitetopplay-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.elitetopplay-footer-links a:hover {
    color: var(--text-white);
}

.elitetopplay-footer-links a:hover::after {
    transform: scaleX(1);
}

.elitetopplay-copyright {
    font-size: 14px;
    opacity: 0.65;
    margin-top: 22px;
}

/* Cookie Banner with glass effect */
.elitetopplay-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(107, 70, 193, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.elitetopplay-cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.elitetopplay-cookie-content p {
    color: var(--text-white);
    margin: 0;
    flex: 1;
    font-weight: 500;
}

.elitetopplay-cookie-content a {
    color: var(--accent-pink-light);
    text-decoration: underline;
    font-weight: 600;
}

.elitetopplay-cookie-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.elitetopplay-cookie-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    background: var(--text-white);
}

/* Responsive Design */
@media (max-width: 991px) {
    .elitetopplay-navbar .container {
        padding: 0 20px;
    }

    .elitetopplay-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .elitetopplay-hero-title {
        font-size: 38px;
    }

    .elitetopplay-hero-description {
        font-size: 17px;
    }

    .elitetopplay-section-title {
        font-size: 34px;
    }

    .elitetopplay-hero-content {
        padding: 45px 35px;
    }
}

@media (max-width: 768px) {
    .elitetopplay-navbar .container {
        padding: 0 15px;
    }

    .elitetopplay-navbar-header {
        width: 100%;
    }

    .elitetopplay-logo {
        font-size: 18px;
        padding: 18px 0;
        z-index: 1001;
    }

    .elitetopplay-logo img {
        height: 32px;
        margin-right: 8px;
    }

    .elitetopplay-navbar-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Mobile menu overlay */
    .elitetopplay-navbar-menu::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: rgba(0, 0, 0, 0.3); */
        /* backdrop-filter: blur(2px); */
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .elitetopplay-navbar-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .elitetopplay-navbar-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255,1);
        /* backdrop-filter: blur(25px) saturate(180%); */
        /* -webkit-backdrop-filter: blur(25px) saturate(180%); */
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 20px rgba(107, 70, 193, 0.15);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        animation: slideDown 0.3s ease-out;
        z-index: 999;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .elitetopplay-navbar-menu.active {
        display: block;
    }

    .elitetopplay-nav-list {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .elitetopplay-nav-link {
        padding: 16px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 15px;
        color: var(--text-dark);
        font-weight: 600;
    }

    .elitetopplay-nav-link:hover {
        background: rgba(107, 70, 193, 0.1);
        color: var(--primary-purple);
    }

    .elitetopplay-nav-link::after {
        display: none;
    }

    .elitetopplay-nav-cta {
        margin: 15px 25px 20px;
        text-align: center;
        display: block;
        padding: 14px 28px;
    }

    .elitetopplay-hero {
        min-height: 550px;
        margin-top: 70px;
    }

    .elitetopplay-hero-title {
        font-size: 32px;
    }

    .elitetopplay-hero-description {
        font-size: 16px;
    }

    .elitetopplay-hero-content {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .elitetopplay-grid {
        grid-template-columns: 1fr;
    }

    .elitetopplay-about-grid {
        grid-template-columns: 1fr;
    }

    .elitetopplay-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .elitetopplay-footer-links a {
        display: block;
        margin: 12px 0;
    }

    .elitetopplay-contact-info,
    .elitetopplay-contact-form-wrapper {
        padding: 35px 28px;
    }
}

@media (max-width: 480px) {
    .elitetopplay-navbar .container {
        padding: 0 12px;
    }

    .elitetopplay-logo {
        font-size: 16px;
        padding: 16px 0;
    }

    .elitetopplay-logo img {
        height: 28px;
        margin-right: 6px;
    }

    .elitetopplay-navbar-toggle {
        padding: 8px;
    }

    .elitetopplay-bar {
        width: 24px;
        height: 2.5px;
    }

    .elitetopplay-navbar-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .elitetopplay-nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }

    .elitetopplay-nav-cta {
        margin: 12px 20px 18px;
        padding: 12px 24px;
        font-size: 13px;
    }

    .elitetopplay-hero-title {
        font-size: 26px;
    }

    .elitetopplay-hero-description {
        font-size: 15px;
    }

    .elitetopplay-section-title {
        font-size: 28px;
    }

    .elitetopplay-hero-content {
        padding: 35px 25px;
    }

    .elitetopplay-platforms,
    .elitetopplay-about,
    .elitetopplay-contact-overlay {
        padding: 60px 0;
    }
}

/* Legal Pages Styles */
.elitetopplay-legal-page {
    font-family: 'Inter', 'Poppins', -apple-system, sans-serif;
    background: linear-gradient(135deg, #F0F9FF 0%, #FAF5FF 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 40px;
}

.elitetopplay-legal-container {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    padding: 50px 60px;
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.elitetopplay-legal-container h1 {
    background: linear-gradient(135deg, #6B46C1 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.elitetopplay-legal-container h2 {
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.elitetopplay-legal-container h3 {
    color: #1E293B;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 700;
}

.elitetopplay-legal-container p,
.elitetopplay-legal-container li {
    line-height: 1.8;
    color: #1E293B;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
}

.elitetopplay-legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.elitetopplay-legal-container li {
    margin-bottom: 10px;
}

.elitetopplay-legal-container a {
    color: #6B46C1;
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.elitetopplay-legal-container a:hover {
    color: #EC4899;
}

.elitetopplay-legal-date {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 500;
}

.elitetopplay-back-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    font-size: 15px;
}

.elitetopplay-back-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    color: #fff;
}

/* Legal Pages Responsive */
@media (max-width: 991px) {
    .elitetopplay-legal-page {
        padding-top: 80px;
    }

    .elitetopplay-legal-container {
        padding: 40px 45px;
        border-radius: 20px;
    }

    .elitetopplay-legal-container h1 {
        font-size: 34px;
    }

    .elitetopplay-legal-container h2 {
        font-size: 22px;
    }

    .elitetopplay-legal-container h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .elitetopplay-legal-page {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .elitetopplay-legal-container {
        padding: 35px 30px;
        margin: 0 15px;
        border-radius: 18px;
    }

    .elitetopplay-legal-container h1 {
        font-size: 30px;
    }

    .elitetopplay-legal-container h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .elitetopplay-legal-container h3 {
        font-size: 17px;
        margin-top: 22px;
    }

    .elitetopplay-legal-container p,
    .elitetopplay-legal-container li {
        font-size: 15px;
    }

    .elitetopplay-back-link {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .elitetopplay-legal-page {
        padding-top: 80px;
    }

    .elitetopplay-legal-container {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }

    .elitetopplay-legal-container h1 {
        font-size: 26px;
    }

    .elitetopplay-legal-container h2 {
        font-size: 18px;
        margin-top: 25px;
    }

    .elitetopplay-legal-container h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .elitetopplay-legal-container p,
    .elitetopplay-legal-container li {
        font-size: 14px;
    }

    .elitetopplay-legal-container ul {
        margin-left: 20px;
    }

    .elitetopplay-back-link {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 25px;
    }
}
