@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

:root {
    --primary-yellow: #ffd700;
    --secondary-yellow: #ffeb3b;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --darker-gray: #0a0a0a;
    --card-bg: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--black) 50%, var(--darker-gray) 100%);
    color: var(--white);
    position: relative;
    min-height: 100vh;
}

.particles-container {
    display: none;
    pointer-events: none;
}

body.home .particles-container {
    display: block;
}

.particles-container canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(1px);
}

header {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.logo-text {
    display: block;
}

.logo:hover {
    color: #fff;
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 15px var(--primary-yellow);
}

.logo::before {
    display: none;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeIn 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-yellow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    padding: 1.5rem;
}

.section-selectors {
    margin-top: 2rem;
}

.social-icons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInFromRight 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-yellow);
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-yellow);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex !important;
        justify-content: center;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    /* Adjust main content padding for mobile navigation */
    main {
        padding-bottom: 5rem;
    }

    .social-icons {
        position: fixed;
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        top: auto;
    }
} 

.section {
    padding: 6rem 5% 3rem;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.leaderboard-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.leaderboard-entry:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.1);
}

.rank {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-yellow);
    width: 50px;
    letter-spacing: 1px;
}

.player {
    flex-grow: 1;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.score {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    font-weight: 600;
    letter-spacing: 1px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.challenge-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.challenge-card h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.challenge-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 5px;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1rem 2rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-entry {
        font-size: 0.9rem;
    }
} 

.section-selectors {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 1.2rem 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    animation: slideInFromLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.section-title:hover {
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 10px 20px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-yellow), transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.section-title:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-selectors {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 1rem 2rem;
    }
} 

/* Add these new styles for the content pages */
.content-section {
    padding-top: 100px;
    min-height: 100vh;
    background: transparent;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
} 

/* Add these new styles for the coming soon page */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.coming-soon-text {
    font-size: 3.5rem;
    color: var(--primary-yellow);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 3px;
    position: relative;
    animation: fadeIn 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.dots {
    display: inline-block;
    animation: dotAnimation 2s infinite;
    opacity: 0.7;
}

@keyframes dotAnimation {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}

@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 2.5rem;
        padding: 0 1rem;
        text-align: center;
    }
} 

/* Add these new styles for the challenges page */
.challenges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.challenge-item {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-yellow);
}

.challenge-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.challenge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.challenge-item:hover .challenge-image img {
    transform: scale(1.05);
}

.challenge-content {
    padding: 1.5rem;
}

.challenge-content h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.challenge-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.label {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.value {
    color: var(--primary-yellow);
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .challenges-container {
        padding: 1rem;
        padding-bottom: 7rem; /* Add space for fixed navigation */
    }

    .challenge-image {
        height: 180px;
    }

    .challenge-content {
        padding: 1rem;
    }

    .challenge-content h3 {
        font-size: 1.3rem;
    }
} 

/* Add keyframes for the particle trail effect */
@keyframes particleTrail {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateX(-100px) translateY(100px);
    }
}

/* Add this class for the particle trail */
.particle-trail {
    position: absolute;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.8), transparent);
    height: 2px;
    animation: particleTrail 1.5s linear infinite;
} 

/* Add these styles for the livestream page */
.stream-container {
    width: 100%;
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 1rem;
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: border-color 0.3s ease;
    animation: slideInFromLeft 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.stream-container:hover {
    border-color: var(--primary-yellow);
}

.stream-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .stream-container {
        margin: 1rem auto;
    }
} 

/* Contact page styles */
.contact-container {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.contact-section {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: border-color 0.3s ease;
    animation: slideInFromLeft 0.8s ease-out;
    animation-fill-mode: both;
    width: 100%;
    max-width: 600px; /* Limits the width on larger screens */
}

.contact-section:hover {
    border-color: var(--primary-yellow);
}

.contact-section h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.social-links {
    display: flex;
    flex-wrap: wrap; /* Ensures wrapping for smaller screens */
    gap: 1rem; /* Adds space between buttons */
    justify-content: center; /* Centers the buttons */
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    width: 30px;
    text-align: center;
}

.social-link span {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.editor {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
    
    .social-link {
        padding: 1rem; /* Add more padding for touch devices */
        font-size: 1.2rem; /* Increase font size for better readability */
        flex: 1 1 auto; /* Ensure proper sizing */
    }

    .contact-section {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center the buttons */ 
} }

/* Add these animation keyframes */
@keyframes slideInFromTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Add animation to elements */
.navbar {
    animation: slideInFromTop 0.8s ease-out;
}

.logo {
    animation: slideInFromLeft 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.nav-links {
    animation: slideInFromRight 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.social-icons {
    animation: slideInFromRight 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.section-selectors {
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.section-title {
    animation: slideInFromLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.section-title:nth-child(2) {
    animation-delay: 0.2s;
}

/* Animations for other pages */
.coming-soon-text {
    animation: fadeIn 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.stream-container {
    animation: slideInFromLeft 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.contact-section {
    animation: slideInFromLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.contact-section.editor {
    animation-delay: 0.2s;
}

.challenge-item {
    animation: slideInFromLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.challenge-item:nth-child(2) {
    animation-delay: 0.2s;
}

.challenge-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add smooth transition for all elements */
* {
    transition: all 0.3s ease;
} 

/* Hero content styles */
.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeIn 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-yellow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInFromBottom 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 1px;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        width: 100%;
        padding: 1.5rem;
    }
} 

/* Update and add these media queries */
@media (max-width: 768px) {
    /* Navbar mobile styles */
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex !important; /* Force display */
        justify-content: center;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        z-index: 1000;
        margin: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links li a {
        padding: 0.5rem;
        margin: 0 0.25rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Remove the old display: none rule */
    @media (max-width: 768px) {
        .nav-links {
            /* Remove this line:
            display: none; */
        }
    }

    /* Adjust main content padding to account for fixed navigation */
    main {
        padding-bottom: 5rem;
    }

    /* Ensure content doesn't get hidden behind fixed elements */
    .content-section {
        padding-bottom: 7rem;
    }

    /* Adjust social icons position */
    .social-icons {
        bottom: 5rem;
        z-index: 999;
    }
}

/* Additional breakpoint for very small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .nav-links li a {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .social-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Height-based media query for shorter screens */
@media (max-height: 700px) {
    .hero {
        padding-top: 50px;
    }

    .hero-stats {
        margin-top: 1rem;
    }

    .section-selectors {
        margin-top: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }
} 

/* Update Bonus Button Styles */
.bonus-btn {
    position: relative; /* Change from fixed to relative */
    top: auto;
    right: auto;
    margin: 0 auto 2rem; /* Center horizontally and add bottom margin */
    background: linear-gradient(45deg, var(--primary-yellow), #ff9900);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Add Back Button Styles */
.back-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: transparent;
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
}

.back-btn.show {
    display: block;
}

.back-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

@media (max-width: 768px) {
    .bonus-btn {
        margin-bottom: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--black) 100%);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--primary-yellow);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-yellow);
}

/* Modal Navigation */
.modal-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

/* Modal Sections */
.modal-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-section.active {
    display: block;
    opacity: 1;
}

.section-content {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.section-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-details {
    flex: 1;
    padding: 20px;
}

.section-details h2 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.section-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.section-details li {
    margin-bottom: 10px;
    color: var(--white);
    opacity: 0.9;
}

.signup-btn {
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.next-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: transparent;
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }
    
    .section-image {
        height: 200px;
    }
    
    .bonus-btn {
        top: auto;
        bottom: 100px;
        right: 50%;
        transform: translateX(50%);
    }
} 

/* Update hero content mobile styles */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 80px 1rem 120px; /* Increased bottom padding for navigation */
        justify-content: flex-start;
    }

    .hero-content {
        padding: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .bonus-btn {
        position: relative;
        margin: 0 auto 1.5rem;
        padding: 10px 20px;
        font-size: 1rem;
        width: fit-content;
        transform: none;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        padding: 1rem;
    }

    .section-selectors {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
    }

    .section-title {
        width: 100%;
        font-size: 1.2rem;
        padding: 1rem;
        text-align: center;
    }

    /* Update modal styles for mobile */
    .modal-content {
        margin: 20px auto;
        padding: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .section-content {
        flex-direction: column;
        gap: 15px;
    }

    .section-image {
        height: 180px;
    }

    .section-details {
        padding: 15px 0;
    }

    /* Adjust navigation position */
    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex !important;
        justify-content: center;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.8rem;
        margin: 0;
        z-index: 1000;
    }

    /* Update social icons position */
    .social-icons {
        position: fixed;
        bottom: 4.5rem;
        right: 0;
        left: 0;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        padding: 0.5rem;
        transform: none;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(5px);
    }
}

/* Additional styles for very small screens */
@media (max-width: 360px) {
    .hero {
        padding-top: 70px;
    }

    .bonus-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Height-based media queries */
@media (max-height: 700px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .hero-stats {
        margin-top: 1rem;
    }

    .section-selectors {
        margin-top: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .bonus-btn {
        margin-bottom: 1rem;
    }
}

/* Ensure content is visible on landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 70px 1rem 100px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }
} 

/* Add these styles and update existing ones */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-btn {
    position: relative;
    background: linear-gradient(45deg, var(--primary-yellow), #ff9900);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Remove old section-selectors styles */
.section-selectors {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .bonus-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 10px 20px;
    }
} 

/* Add these new styles */
.explore-btn {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 3;
    background: transparent;
    border: none;
    color: var(--primary-yellow);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

.page-section {
    min-height: 80vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-heading {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.challenges-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 3rem;
}

.show-all-btn {
    background: linear-gradient(45deg, var(--primary-yellow), #ff9900);
    color: var(--black);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.show-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 4rem 1rem;
    }
    
    .challenges-preview {
        grid-template-columns: 1fr;
    }
} 

/* Update explore button styles */
.explore-btn {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 2;
    background: transparent;
    border: none;
    color: var(--primary-yellow);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

/* Update the bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* Add this at the end of your file */
@media (max-width: 768px) {
    .explore-btn {
        margin-top: 50px; /* Adjust spacing as needed */
        position: relative; /* Keep it in the normal flow */
        z-index: 0; /* Ensure it doesn't overlap */
    }
    
    .page-section {
        min-height: auto;
        padding: 3rem 1rem;
    }
} 

/* Remove the fixed social-icons styles and add these new footer styles */
.footer {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9);
    min-height: 200px;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
}

.footer-text {
    color: var(--white);
    opacity: 0.7;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .icons-slide i {
        font-size: 2rem;
        margin: 0 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 7rem;
    }
} 

/* Add back the sliding icons styles */
.sliding-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.icon-row {
    position: relative;
    width: 200%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}

.icons-slide {
    display: flex;
    align-items: center;
    animation: slide 20s linear infinite;
    will-change: transform;
}

.icons-slide i {
    font-size: 2.5rem;
    margin: 0 2rem;
    color: var(--primary-yellow);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Update footer styles */
.footer {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9);
    min-height: 200px;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .icons-slide i {
        font-size: 2rem;
        margin: 0 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 7rem;
    }
} 

/* Gamble Aware Page Styles */
.gamble-aware-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gamble-aware-content {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.awareness-block {
    margin-bottom: 3rem;
}

.awareness-block h2 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.awareness-block p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.awareness-block ul {
    list-style: none;
    padding-left: 1rem;
}

.awareness-block ul li {
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.awareness-block ul li:before {
    content: '•';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-yellow);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.emergency-contact {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.emergency-contact p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.phone-number {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .gamble-aware-section {
        padding: 4rem 1rem;
    }

    .gamble-aware-content {
        padding: 1rem;
    }

    .awareness-block h2 {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.2rem;
    }
} 

/* Update logo styles */
.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.logo-text {
    display: block;
}

/* Update buttons container and action buttons */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.action-btn {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.action-btn i {
    font-size: 1.2rem;
}

.action-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.bonus-action {
    background: linear-gradient(45deg, var(--primary-yellow), #ff9900);
    color: var(--black);
    border: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0 0.8rem;
    }

    .action-btn {
        min-width: calc(33% - 0.6rem);
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .action-btn i {
        font-size: 1.1rem;
    }

    /* Ensure logo is visible */
    .logo {
        font-size: 1.3rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Small mobile devices */
@media (max-width: 380px) {
    .buttons-container {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .action-btn {
        min-width: calc(33% - 0.4rem);
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .action-btn i {
        font-size: 1rem;
    }
} 


.bonus-image-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    margin: 0 auto; /* Center the container itself */
}

.bonus-image {
    width: 40%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow effect */
}