@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}

::selection {
    background: var(--primary-orange-dark);
    color: #fff;
}

:root {
    /* Light Theme Colors */
    --primary-orange: #f97316;
    --primary-orange-dark: #ea580c;
    --primary-orange-light: #fed7aa;
    --primary-orange-lighter: #ffedd5;

    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-tertiary: #9ca3af;

    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;

    --border-color: #e5e7eb;
    --border-color-light: #f3f4f6;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --gradient-orange: linear-gradient(135deg, #f97316, #ea580c);
    --gradient-text: linear-gradient(135deg, #f97316, #ea580c);

    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;
    --border-radius-3xl: 3rem;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --faq-bg-start: #e0f2ff;
    --faq-bg-mid: #fef6f1;
    --faq-bg-end: rgba(249, 115, 22, 0.05);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-tertiary: #9ca3af;

    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;

    --border-color: #374151;
    --border-color-light: #4b5563;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.5);

    --faq-bg-start: #0f172a;
    --faq-bg-mid: #1e293b;
    --faq-bg-end: rgba(249, 115, 22, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;

}

body {
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FF6329" stroke="%23FFFFFF" stroke-width="1.5" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z"></path></svg>'), auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-dark);
}

#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.enhanced-spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-outer,
.spinner-inner {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 2s linear infinite;
}

.spinner-outer {
    width: 60px;
    height: 60px;
    border-top-color: var(--primary-orange);
    border-right-color: var(--primary-orange);
}

.spinner-inner {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    border-bottom-color: var(--primary-orange-light);
    border-left-color: var(--primary-orange-light);
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.loader-container h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.loader-container p {
    color: var(--text-secondary);
    font-size: 1rem;
}

body.loaded #pageLoader {
    opacity: 0;
    pointer-events: none;
}

@keyframes gamingSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

body.loaded #pageLoader {
    opacity: 0;
    pointer-events: none;
}

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--primary-orange);
    z-index: 9999;
    transition: width 0.1s ease-out;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-orange);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: none;
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: scale(0.95);
    box-shadow: var(--shadow-sm);
}

.btn-primary .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-primary.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-2xl);
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-orange-light);
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-secondary.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-2xl);
    align-items: center;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--primary-orange-lighter);
    transition: all var(--transition-normal);
}

[data-theme="dark"] .header {
    background: rgba(17, 24, 39, 0.8);
    border-bottom-color: rgba(249, 115, 22, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-orange);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.logo-icon img {
    height: 100%;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1000px) {
    .nav-desktop {
        display: flex;
    }

}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-orange-lighter);
    border: none;
    border-radius: var(--border-radius-xl);
    color: var(--primary-orange);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(249, 115, 22, 0.3);
    color: var(--primary-orange-light);
}

.theme-toggle:hover {
    background: var(--primary-orange-light);
    transform: scale(1.1);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(249, 115, 22, 0.5);
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: all var(--transition-normal);
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.moon-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.download-btn-desktop {
    display: none;
}

@media (min-width: 768px) {
    .download-btn-desktop {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-orange-lighter);
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .mobile-menu-btn {
    background: rgba(249, 115, 22, 0.3);
}

@media (min-width: 1000px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1rem;
    height: 2px;
    background: var(--primary-orange);
    transition: all var(--transition-normal);
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(0.25rem, 0.25rem);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--primary-orange-lighter);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .mobile-menu {
    background: rgba(17, 24, 39, 0.95);
    border-top-color: rgba(249, 115, 22, 0.2);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.mobile-nav-link:hover {
    color: var(--primary-orange);
    background: var(--primary-orange-lighter);
}

[data-theme="dark"] .mobile-nav-link:hover {
    background: rgba(249, 115, 22, 0.2);
}

.mobile-download-btn {
    margin-top: 1rem;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange-lighter) 0%, var(--bg-primary) 50%, var(--primary-orange-lighter) 100%);
}

[data-theme="dark"] .hero-bg {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, var(--bg-primary) 50%, rgba(249, 115, 22, 0.1) 100%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(249, 115, 22, 0.3);
    animation-delay: 0s;
}

.hero-shape-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(249, 115, 22, 0.2);
    animation-delay: 2s;
    animation-duration: 8s;
}

.hero-shape-3 {
    top: 50%;
    right: 25%;
    width: 6rem;
    height: 6rem;
    background: rgba(249, 115, 22, 0.4);
    animation-delay: 4s;
    animation-duration: 4s;
}

/* FAQ Section Background Shapes */
.faq-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            var(--faq-bg-start),
            var(--faq-bg-mid) 60%,
            var(--faq-bg-end));
    z-index: 1;
}


[data-theme="dark"] .faq-bg {
    background: linear-gradient(135deg, #0f172a, #1e293b 60%, rgba(249, 115, 22, 0.2));
}


.faq-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.faq-shape,
.hero-shape {
    z-index: 0;
}

.faq-container,
.faq-cta,
.hero-content {
    z-index: 2;
    position: relative;
}

.faq-shape-1 {
    top: 16rem;
    left: 18rem;
    width: 10rem;
    height: 10rem;
    background: rgba(249, 115, 22, 0.2);
    animation-delay: 1s;
}

.faq-shape-2 {
    bottom: 4rem;
    right: 3rem;
    width: 10rem;
    height: 10rem;
    background: rgba(249, 115, 22, 0.15);
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-left {
    margin: 30px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-left {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-orange-lighter);
    color: var(--primary-orange-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-normal);
}

[data-theme="dark"] .hero-badge {
    background: rgba(249, 115, 22, 0.3);
    color: var(--primary-orange-light);
}

.hero-badge:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .hero-rating {
        justify-content: flex-start;
    }
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary-orange);
}

.hero-rating span {
    color: var(--text-tertiary);
}

/* Phone Mockup */
.hero-right {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .hero-right {
        justify-content: flex-end;
    }
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 20rem;
    height: 37.5rem;
    background: linear-gradient(135deg, #374151, #111827);
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-2xl);
    transform: rotate(3deg);
    transition: transform var(--transition-slow);
}

.phone-mockup:hover .phone-frame {
    transform: rotate(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-status-bar {
    height: 2rem;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.phone-content {
    position: absolute;
    inset: 1rem 0.8rem;
    top: 1.7rem;
    background: var(--bg-primary);
    border-radius: 2rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[data-theme="dark"] .phone-content {
    background: var(--bg-secondary);
}

.resource-bar {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--bg-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
}

[data-theme="dark"] .resource-item {
    background: var(--bg-tertiary);
}

.resource-icon {
    font-size: 0.875rem;
}

.resource-add {
    background: rgb(65, 164, 65);
    color: white;
    border: none;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    font-size: 0.625rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    text-align: center;
    margin-bottom: 0.5rem;
}

.user-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.5rem;
    border: 2px solid var(--primary-orange);
    background: var(--primary-orange-light);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.level-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--primary-orange-lighter);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-lg);
    margin-top: 0.5rem;
    display: inline-block;
}

[data-theme="dark"] .level-badge {
    background: rgba(249, 115, 22, 0.3);
}

/* Game Sections */
.game-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.game-section {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-xl);
    padding: 1rem;
    transition: transform var(--transition-normal);
    cursor: pointer;
}

[data-theme="dark"] .game-section {
    background: var(--bg-tertiary);
}

.game-section:hover {
    transform: scale(1.02);
}

.play-section {
    background: linear-gradient(135deg, #ff8a50, #ff6b35);
    color: white;
}

[data-theme="dark"] .play-section {
    background: linear-gradient(135deg, #ff8a50, #ff6b35);
    color: white;
}

.competitions-section {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

[data-theme="dark"] .competitions-section {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

.bonus-section {
    background: linear-gradient(135deg, #ed64a6, #d53f8c);
    color: white;
}

[data-theme="dark"] .bonus-section {
    background: linear-gradient(135deg, #ed64a6, #d53f8c);
    color: white;
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
}

.level-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.level-circle {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.level-text {
    font-size: 0.625rem;
}

.competition-podium {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.podium-item {
    font-size: 1rem;
}

.podium-steps {
    display: flex;
    gap: 0.125rem;
    align-items: end;
}

.step {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.125rem;
    width: 0.75rem;
    height: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
}

.step-1 {
    height: 1rem;
}

.step-2 {
    height: 0.875rem;
}

.step-3 {
    height: 0.625rem;
}

.bonus-items {
    display: flex;
    gap: 0.25rem;
}

.bonus-gift,
.bonus-indicator {
    font-size: 0.875rem;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    color: var(--text-tertiary);
    font-size: 0.625rem;
    cursor: pointer;
    transition: color var(--transition-normal);
}

.nav-item.active {
    color: var(--primary-orange);
}

.nav-item i {
    font-size: 0.875rem;
}

.floating-element {
    position: absolute;
    padding: 0.75rem;
    border-radius: var(--border-radius-2xl);
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element-1 {
    top: -2rem;
    left: -2rem;
    background: #10b981;
    animation: bounce 2s infinite;
}

.floating-element-2 {
    bottom: -2rem;
    right: -2rem;
    background: #3b82f6;
    animation: pulse 2s infinite;
}

.floating-element-3 {
    top: 25%;
    right: -3rem;
    background: #8b5cf6;
    animation: ping 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75%,
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
.section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero .section-header {
    margin-top: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-orange-lighter);
    color: var(--primary-orange-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-badge {
    background: rgba(249, 115, 22, 0.3);
    color: var(--primary-orange-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

[data-theme="dark"] .features-bg {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

.features-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.features-shape-1 {
    top: 10%;
    left: 10%;
    width: 12rem;
    height: 12rem;
    background: rgba(249, 115, 22, 0.1);
    animation-delay: 0s;
}

.features-shape-2 {
    bottom: 20%;
    right: 15%;
    width: 16rem;
    height: 16rem;
    background: rgba(249, 115, 22, 0.08);
    animation-delay: 3s;
}

.features-shape-3 {
    top: 60%;
    left: 20%;
    width: 8rem;
    height: 8rem;
    background: rgba(249, 115, 22, 0.15);
    animation-delay: 6s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    cursor: pointer;
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: 1.7rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.coming-soon-badge {
    position: absolute;
    top: 40px;
    right: 35px;
    background: linear-gradient(135deg, #f08b43, #ea6924);
    color: white;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 0 10px rgba(242, 147, 80, 0.5), 0 0 20px rgba(242, 154, 91, 0.3);
    animation: glowPulse 2s infinite;
    z-index: 5;
}

[data-theme="dark"] .coming-soon-badge {
    background: var(--gradient-text);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5), 0 0 20px rgba(249, 115, 22, 0.3);
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.7), 0 0 20px rgba(249, 115, 22, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 1), 0 0 30px rgba(249, 115, 22, 0.6);
    }
}

[data-theme="dark"] .feature-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .feature-card:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    border: 1px solid var(--primary-orange);
    background: #292C34;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--primary-orange);
    background: var(--primary-orange-lighter)
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-orange-lighter);
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .feature-icon {
    background: rgba(249, 115, 22, 0.3);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    background: var(--primary-orange-lighter);
    color: var(--primary-orange-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .feature-highlight {
    background: rgba(249, 115, 22, 0.3);
    color: var(--primary-orange-light);
}

.feature-card:hover .feature-highlight {
    background: var(--primary-orange);
    color: white;
    /* transform: scale(1.05); */
}

.features-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.features-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 4xl;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-container,
.faq-cta {
    position: relative;
    z-index: 2;
}


.faq-item {
    background: var(--bg-primary);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .faq-item {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-xl);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all var(--transition-normal);
}

/* .faq-question:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: -2px;
} */

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    color: var(--primary-orange);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-cta {
    background: var(--bg-primary);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

[data-theme="dark"] .faq-cta {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .faq-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #111827, #1f2937, rgba(249, 115, 22, 0.1));
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .footer-bg {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, rgba(249, 115, 22, 0.2) 100%);
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.footer-shape-1 {
    top: 2rem;
    left: 2rem;
    width: 8rem;
    height: 8rem;
    background: rgba(249, 115, 22, 0.1);
}

.footer-shape-2 {
    bottom: 2rem;
    right: 2rem;
    width: 12rem;
    height: 12rem;
    background: rgba(249, 115, 22, 0.15);
}

.footer-content {
    display: grid;
    gap: 2rem;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.contact-item svg {
    color: var(--primary-orange);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-newsletter {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.newsletter-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    border: 1px solid #a8a7a7;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.newsletter-input::placeholder {
    color: var(--text-tertiary);
}

.newsletter-btn {
    flex-shrink: 0;
    border-radius: 10px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
    }
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-right {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .phone-frame {
        width: 18rem;
        height: 35rem;
    }

    .phone-content {
        padding: 2rem;
    }

    .game-section {
        padding: 0.75rem 1rem;
    }

    .resource-bar {
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 0.5rem;
    }

    .resource-item {
        padding: 0 2px;
    }

    .phone-content {
        top: 1.5rem;
        gap: 1rem;
        padding: 0.5rem;
    }

    .earnings-amount {
        font-size: 1rem;
    }

    .phone-cta {
        padding: 0.5rem;
    }

    .category-item {
        padding: 0.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .features-grid,
    .steps-grid,
    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {

    .header,
    .mobile-menu,
    .floating-element,
    .hero-shape,
    .bg-shape,
    .footer-shape {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero-bg,
    .section-bg,
    .footer-bg {
        background: none;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    background: var(--primary-orange-dark);
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange-lighter) 0%, var(--bg-primary) 50%, var(--primary-orange-lighter) 100%);
}

[data-theme="dark"] .contact-hero-bg {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, var(--bg-primary) 50%, rgba(249, 115, 22, 0.1) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 10;
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.contact-stat {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .contact-stat {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.contact-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-orange);
}

.contact-stat-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-orange-lighter);
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .contact-stat-icon {
    background: rgba(249, 115, 22, 0.3);
}

.contact-stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.contact-stat-info {
    text-align: center;
}

.contact-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.contact-stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Contact Methods Section */
.contact-methods {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

[data-theme="dark"] .contact-methods {
    background: var(--bg-primary);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-method-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .contact-method-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-orange);
}

.contact-method-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-orange-lighter);
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .contact-method-icon {
    background: rgba(249, 115, 22, 0.3);
}

.contact-method-card:hover .contact-method-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.contact-method-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: color var(--transition-normal);
}

.contact-method-card:hover .contact-method-icon i {
    color: white;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-method-info {
    background: var(--primary-orange-lighter);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .contact-method-info {
    background: rgba(249, 115, 22, 0.2);
}

.contact-method-info strong {
    color: var(--primary-orange-dark);
    font-weight: 600;
}

[data-theme="dark"] .contact-method-info strong {
    color: var(--primary-orange-light);
}

.contact-method-btn {
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-form-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

[data-theme="dark"] .contact-form-bg {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

.contact-form-wrapper {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.contact-form-content {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-form-content {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-group-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    font-family: inherit;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    resize: none;
}

.form-error {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}


.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--gradient-orange);
    border-color: var(--primary-orange);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.checkbox-text {
    flex: 1;
}

.terms-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.contact-social-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-social-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.contact-info-card h3,
.contact-social-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-orange-lighter);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .contact-info-icon {
    background: rgba(249, 115, 22, 0.3);
}

.contact-info-icon i {
    color: var(--primary-orange);
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-details strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.contact-info-details span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Social Links */
.contact-social-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.contact-social-link:nth-child(1):hover {
    color: #fff;
    background: #4f82c4;
    border-color: #1877f2;
    transform: translateX(5px);
}

[data-theme="dark"] .contact-social-link:nth-child(1):hover {
    color: #fff;
    background: #32598d;
    border-color: #1877f2;
    transform: translateX(5px);
}

.contact-social-link:nth-child(2):hover {
    color: #fff;
    background: #cd4783;
    border-color: #a80046;
    transform: translateX(5px);
}

.contact-social-link:nth-child(3):hover {
    color: #fff;
    background: #ec7171;
    border-color: #e01616;
    transform: translateX(5px);
}

[data-theme="dark"] .contact-social-link:nth-child(3):hover {
    color: #fff;
    background: #7b4040;
    border-color: #e01616;
    transform: translateX(5px);
}


.contact-social-link i {
    font-size: 1.125rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Notification Styles */
.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.notification-icon {
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for contact page */
@media (max-width: 1023px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        order: -1;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        min-height: 60vh;
    }

    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-stat {
        padding: 1rem;
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-content {
        padding: 2rem;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .contact-form-header h2 {
        font-size: 1.5rem;
    }

    .contact-method-card {
        padding: 1.5rem;
    }

    .contact-method-icon {
        width: 4rem;
        height: 4rem;
    }

    .contact-method-icon i {
        font-size: 1.5rem;
    }
}

/* Make live chat card full width on large screens */
.contact-method-card.full-width {
    grid-column: 1 / -1;
}

/* Optional UI polish */
.section-header.text-left {
    text-align: left;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {

    .contact-form-wrapper {
        display: flex;
        flex-direction: column;
    }

    .contact-form-content {
        order: 1;
    }

    .contact-info-sidebar {
        order: 2;
        margin-top: 2rem;
    }

    .contact-method-card.full-width {
        grid-column: auto;
    }

    .section-header.text-left {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .contact-form-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-form-content {
        flex: 2;
    }

    .contact-info-sidebar {
        flex: 1;
    }
}

/* === Reviews Section Enhanced Styling === */
.reviews {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 237, 213, 0.6) 0%,
            rgba(255, 255, 255, 0.4) 25%,
            rgba(249, 115, 22, 0.05) 50%,
            rgba(255, 237, 213, 0.3) 75%,
            rgba(255, 255, 255, 0.6) 100%);
    z-index: -1;
}

[data-theme="dark"] .reviews-bg {
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.1) 0%,
            rgba(17, 24, 39, 0.8) 25%,
            rgba(31, 41, 55, 0.6) 50%,
            rgba(249, 115, 22, 0.05) 75%,
            rgba(17, 24, 39, 0.9) 100%);
    z-index: -1;
}

.reviews-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    animation: float 10s ease-in-out infinite;
    opacity: 0.4;

}

.reviews-shape-1 {
    top: 25%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-orange), transparent);
    border-radius: 20px;
    animation-delay: 0s;
}

.reviews-shape-2 {
    bottom: 5%;
    right: 4%;
    width: 18rem;
    height: 18rem;
    background: rgba(249, 116, 22, 0.224);
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Review Stats */
.review-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.review-stats .stat-item:hover {
    transform: scale(1.05);
}

.review-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0;
}

.review-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* ================= ENHANCED FILTER STYLES ================= */

/* Review Filters Container */
.review-filters {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-2xl);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

[data-theme="dark"] .review-filters {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(249, 115, 22, 0.2);
}

/* Filter Section */
.filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .filter-section {
        justify-content: space-between;
    }
}

/* Filter Group */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
}

@media (min-width: 480px) {
    .filter-group {
        min-width: 200px;
    }
}

/* Filter Label */
.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.filter-label i {
    color: var(--primary-orange);
    font-size: 1rem;
}

/* Filter Select */
.filter-select {
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5rem 1.5rem;
    padding-right: 3rem;
}

[data-theme="dark"] .filter-select {
    /* background: var(--bg-tertiary); */
    border-color: var(--border-color);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.filter-select:hover {
    border-color: var(--primary-orange-light);
}

/* Clear Filters Button */
.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    margin-top: 2.5rem;
}

[data-theme="dark"] .clear-filters-btn {
    background: var(--bg-primary);
}

.clear-filters-btn:hover {
    background: var(--primary-orange-lighter);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

[data-theme="dark"] .clear-filters-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #fff;
}

/* Filter Results */
.filter-results {
    text-align: center;
    margin-top: 1rem;
}

.review-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

/* Enhanced scroll buttons for filters */
.reviews-scroll-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    background: var(--primary-orange);
    color: var(--text-primary, white);
    padding: 0.5rem 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .scroll-btn {
    background: var(--bg-secondary);
}

[data-theme="dark"] .scroll-btn:hover {
    background: var(--bg-tertiary);
}

.scroll-btn:hover {
    background: var(--primary-orange-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Load More Button Enhancement */
.load-more-btn {
    font-weight: 500;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange-light);
    outline: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
}

.load-more-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .load-more-btn {
    background: rgba(249, 115, 22, 0.2);
    color: var(--primary-orange-light);
    border-color: rgba(249, 115, 22, 0.3);
}

[data-theme="dark"] .load-more-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Hide scroll buttons on mobile for filters */
@media (max-width: 768px) {
    #reviewsScrollButtons {
        display: none;
    }

    .filter-section {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
        min-width: auto;
    }

    .clear-filters-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Spinner Loader */
.spinner {
    width: 48px;
    height: 48px;
    border: 6px solid var(--primary-orange-light);
    border-top: 6px solid var(--primary-orange-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

:root[data-theme='light'] .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: black;
}

/* Skeleton Loader */
.review-skeleton {
    width: 220px;
    height: 180px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 400% 400%;
    animation: shimmer 2s infinite;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (min-width: 768px) {
    .review-skeleton {
        display: block;
    }
}

@media (max-width: 767px) {
    #reviewsLoading {
        display: block;
        /* ensure spinner is visible on mobile */
    }
}

/* Reviews Grid with Horizontal Scrolling */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.reviews-grid::-webkit-scrollbar {
    height: 0.4rem;
}

/* Review Card Styling */
.review-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 280px;
    height: 230px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-2xl);
    padding: 1.2rem;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(249, 115, 22, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

.review-card .review-text {
    overflow-y: auto;
    max-height: 150px;
    width: 100%;
    padding-right: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.review-card .review-text::-webkit-scrollbar {
    width: 0.25rem;
}

.review-card::-webkit-scrollbar {
    width: 0.25rem;
}

.review-card::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 1rem;
}

[data-theme="dark"] .review-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.review-card h4 {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.review-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.3rem 0;
    line-height: 1.5;
}


.review-card small {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    margin-top: 1rem;
}

/* Review Form Styling */
.review-form-wrapper {
    max-width: 500px;
    margin: 3rem auto 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

[data-theme="dark"] .review-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.review-form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.review-form .form-group {
    margin-bottom: 1rem;
}

.review-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    outline: none;
}

.review-form textarea::-webkit-scrollbar {
    width: 0.25rem;
}

/* Golden Star Rating */
.star-rating {
    display: flex;
    gap: 0.3rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating i {
    color: #facc15;
    transition: transform var(--transition-fast);
}

.star-rating i:hover {
    transform: scale(1.2);
}

.review-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.review-card i {
    color: var(--border-color);
    font-size: 2.5rem;
    margin-right: 0.5rem;
}

[data-theme="dark"] .review-card i {
    color: var(--bg-tertiary);
    font-size: 2.5rem;
    margin-right: 0.5rem;
}

button:disabled,
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.animate-on-scroll,
.stagger-item {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.shimmer-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: var(--border-radius-2xl);
}

.shimmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 60%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    pointer-events: none;
    border-radius: inherit;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Underline Image Styling */
.underline-img {
    display: block;
    margin: 0.5rem auto 0 auto;
    max-width: 100%;
    height: auto;
}

@media (min-width: 480px) {
    .underline-img {
        max-width: 250px;
    }
}

@media (min-width: 768px) {
    .underline-img {
        max-width: 350px;
    }
}

@media (min-width: 1024px) {
    .underline-img {
        max-width: 450px;
    }
}

/* Enhanced Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: floatParticle 4s infinite linear;
    opacity: 0.6;
    will-change: transform;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 1;
    }

    10% {
        opacity: 0.6;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }

    90% {
        opacity: 0;
        transform: translateY(10vh) rotate(324deg) scale(1);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.promo-banner {
    position: sticky;
    top: 4rem;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: #fff;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.5s ease forwards;
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-text {
    font-size: 0.95rem;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.promo-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--border-radius-md);
}

.promo-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.promo-close:hover {
    transform: scale(1.2);
}

.getNow {
    background: #fff;
    padding: 0.2rem 0.5rem;
    color: #222;
    font-weight: 600;
    margin-right: 1rem;
    border-radius: var(--border-radius-sm);
    transition: 0.3s;
}

.getNow:hover {
    background: #ebebeb;
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
}

@media (max-width: 800px) {
    .promo-banner {
        display: none;
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.video-content {
    position: relative;
    width: 90%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    background: black;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: popIn 0.4s ease;
}

.video-content video {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 1.75rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

@keyframes popIn {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* === No Internet Overlay === */
.no-internet-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

[data-theme="dark"] .no-internet-overlay {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.no-internet-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.no-internet-center {
    text-align: center;
    animation: fadeIn 1s ease forwards;
    padding: 1rem;
}

.no-internet-center h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

.no-internet-center p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.retry-btn {
    background: var(--gradient-orange);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease;
}

.retry-btn:hover {
    transform: scale(1.05);
}

.wifi-svg {
    width: 100px;
    height: 100px;
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

body.offline {
    overflow: hidden;
}

/* Optional: Hide scrollbar visually (if needed for specific browsers) */
body.offline::-webkit-scrollbar {
    display: none;
}

/* ===== PROFESSIONAL PODIUM STYLES ===== */

/* Leaderboard Section */
.leaderboard {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--primary-orange-lighter) 100%);
}

[data-theme="dark"] .leaderboard {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, rgba(249, 115, 22, 0.1) 100%);
}

.leaderboard-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--primary-orange-lighter) 100%);
}

[data-theme="dark"] .leaderboard-bg {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, rgba(249, 115, 22, 0.1) 100%);
}

.leaderboard-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.leaderboard-shape-1 {
    top: 15%;
    left: 10%;
    width: 10rem;
    height: 10rem;
    background: rgba(249, 115, 22, 0.2);
    animation-delay: 0s;
}

.leaderboard-shape-2 {
    bottom: 20%;
    right: 15%;
    width: 14rem;
    height: 14rem;
    background: rgba(249, 115, 22, 0.15);
    animation-delay: 4s;
}

.leaderboard-shape-3 {
    top: 60%;
    left: 20%;
    width: 8rem;
    height: 8rem;
    background: rgba(249, 115, 22, 0.25);
    animation-delay: 2s;
}

/* Leaderboard Container */
.leaderboard-container {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

[data-theme="dark"] .leaderboard-container {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Loading State */
.leaderboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    color: var(--text-secondary);
}

/* Top 5 Players List */
.top-players-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .player-card {
    background: rgba(55, 65, 81, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: inherit;
    z-index: -1;
}

.player-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* First Place Special Styling */
.player-card.rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.player-card.rank-1::after {
    content: '👑';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    animation: crown-bounce 2s ease-in-out infinite;
}

@keyframes crown-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Second Place Styling */
.player-card.rank-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(169, 169, 169, 0.1));
    border-color: #C0C0C0;
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

/* Third Place Styling */
.player-card.rank-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 134, 11, 0.1));
    border-color: #CD7F32;
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.3);
}

/* Rank Badge */
.rank-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid currentColor;
    padding: 2rem;
}

.rank-badge.rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rank-badge.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rank-badge.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rank-badge.rank-4,
.rank-badge.rank-5 {
    background: var(--primary-orange-lighter);
    color: var(--primary-orange-dark);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .rank-badge.rank-4,
[data-theme="dark"] .rank-badge.rank-5 {
    background: rgba(249, 115, 22, 0.3);
    color: var(--primary-orange-light);
}

/* Player Avatar */
.player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.player-card:hover .player-avatar {
    transform: scale(1.1);
}

/* Player Info */
.player-info {
    flex: 1;
    min-width: 0;
}

.player-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.player-score {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    text-align: center;
}

[data-theme="dark"] .player-score {
    background: rgba(255, 255, 255, 0.1);
}

/* Position Check Container */
.position-check-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

/* Position Modal */
.position-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.position-modal.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    animation: modalSlideUp 0.3s ease;
}

[data-theme="dark"] .modal-content {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary-orange-lighter);
    color: var(--primary-orange);
}

[data-theme="dark"] .modal-close:hover {
    background: rgba(249, 115, 22, 0.3);
}

.modal-body {
    padding: 2rem;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-form label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.search-form input {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all var(--transition-normal);
}

[data-theme="dark"] .search-form input {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.search-form input::placeholder {
    color: var(--text-tertiary);
}

/* Position Result */
.position-result {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
}

[data-theme="dark"] .position-result {
    background: var(--bg-primary);
}

.position-result.hidden {
    display: none;
}

.position-found {
    color: var(--primary-orange);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.position-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.position-rank {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.position-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.position-score {
    font-size: 1rem;
    color: var(--text-secondary);
    background: var(--primary-orange-lighter);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

[data-theme="dark"] .position-score {
    background: rgba(249, 115, 22, 0.3);
}

.position-not-found {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media screen and (max-width:520px) {
    .player-card {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }

    .player-avatar {
        display: none;
    }

    .player-card.rank-1::after {
        top: 6px;
        right: 5px;
    }

    .leaderboard-container {
        padding: 1rem;
    }

}

/* Coming Soon Modal */
.coming-soon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.coming-soon-modal.hidden {
    display: none;
}

.coming-soon-content {
    border: 1px solid var(--primary-orange);
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
}

.coming-soon-content h3 {
    margin-bottom: 1rem;
    font-size: 1.85rem;
    color: var(--primary-orange);
}

.coming-soon-content p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.position-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem;
    border-radius: 0.6rem;
    background: var(--bg-secondary);
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.position-card .position-rank {
    min-width: 56px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
}

.position-card .position-name {
    font-weight: 600;
    flex: 1;
}

.position-card .position-score {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.position-found {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.more-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.all-players-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
}

.rank-all {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-primary);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.rank-all:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.rank-all .rank-badge {
    background: var(--primary-orange-light);
    color: var(--primary-orange-dark);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    min-width: 3rem;
    text-align: center;
}

.rank-all .player-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary-orange);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rank-all .player-info {
    flex: 1;
}

.rank-all .player-name {
    font-weight: 600;
    color: var(--text-primary);
}

.rank-all .player-score {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pagination .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.shake-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ea580c;
    font-weight: 600;
    animation: shakeAnim 1.8s ease-in-out infinite;
    position: relative;
    text-decoration: none;
}

.highlight-circle {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ea580c;
    box-shadow: 0 0 10px #ff9800, 0 0 20px rgba(255, 152, 0, 0.6);
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 8px #ea580c, 0 0 15px rgba(255, 152, 0, 0.5);
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 15px #ea580c, 0 0 25px rgba(255, 193, 7, 0.7);
    }
}

@keyframes shakeAnim {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(1deg);
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    max-width: 320px;
    background: var(--bg-secondary);
    border: 2px solid var(--primary-orange);
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    text-align: left;
    color: var(--text-primary);
    display: none;
    z-index: 99999;
    box-shadow: var(--shadow-lg);
}

/* Text inside cookie box */
.cookie-banner p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* Make link pretty */
.cookie-banner a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive – move more inward on small screens */
@media (max-width: 500px) {
    .cookie-banner {
        bottom: 15px;
        left: 10px;
        right: 10px;
        max-width: unset;
    }
}
