/* Global Styles */
:root {
    --primary-color: #FFA500;    /* orange */
    --secondary-color: #FFFFFF;  /* white */
    --accent-color: #000000;     /* black */
    --text-color: #FFFFFF;       /* white text */
    --light-text: #FFA500;       /* orange text */
    --dark-bg: #000000;         /* black background */
    --light-bg: #1A1A1A;        /* slightly lighter black */
    --gradient: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);  /* orange gradient */
    --card-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
    --transition: all 0.3s ease;
    --border-color: #FFA500;    /* orange border */
    --hover-color: #FFFFFF;     /* white hover */
    --text-gradient: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);  /* orange gradient */
    --dark-gradient: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);  /* dark gradient */
    --light-gradient: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%); /* lighter gradient */
    --gold-gradient: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);  /* orange gradient */
    --dark-gold-gradient: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);  /* darker orange gradient */
    --white-gradient: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);  /* white gradient */
    --gray-gradient: linear-gradient(135deg, #808080 0%, #A9A9A9 100%);  /* gray gradient */
    --beach-gradient: var(--gradient);
    --ocean-gradient: var(--dark-gradient);
    --sky-gradient: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    --wave-gradient: var(--gradient);
    --brown-gradient: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --dark-pink-gradient: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    --teal-gradient: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --neon-gradient: var(--gradient);
    --gold-accent: #FFA500;     /* orange accent */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--dark-bg);
    overflow-x: hidden;
    padding-bottom: 60px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header-1 {
    text-align: center;
    margin-bottom: 40px;
}
.section-header-1 h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-header h2:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 1px solid var(--border-color);
}

.btn-primary:hover {
    background: var(--dark-gradient);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.btn-secondary-1 {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 165, 0, 0.1);
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    background: var(--dark-gradient);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--primary-color);
    transition: padding 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    background: var(--dark-gradient);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    /* transition: height 0.3s ease; */
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Column - Content */
.hero-content {
    text-align: left;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Right Column - Image */
.hero-image {
    position: relative;
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

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

/* Mobile Styles */
@media (max-width: 992px) {
    .hero {
        padding: 10px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        padding: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .mobile-title {
        display: block;
        margin-bottom: 10px;
    }

    .desktop-title {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

/* Hide mobile title on desktop */
.mobile-title {
    display: none;
}

/* Show desktop title */
.desktop-title {
    display: block;
}

/* Update hero content text styles */
.hero-content h1 span {
    color: var(--primary-color);
}

.mobile-title {
    display: none;
}

.mobile-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-text);
    text-shadow: none;
}

.mobile-title h1 span {
    background: var(--light-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-text);
    text-shadow: none;
}

.hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-image {
    position: relative;
    text-align: center;
    
}

.hero-image img {
    max-width: 80%;
    animation: bounce 2s ease-in-out infinite;
    filter: none;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--dark-gradient);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.feature-card::before,
.feature-card::after,
.testimonial-card::before {
    display: none;
}

.feature-card:hover {
    border-color: var(--hover-color);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: px;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.9;
}

/* Games Section */
.games {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.games-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    padding: 10px 20px;
    border: none;
    background-color: var(--dark-bg);
    color: var(--text-color);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    border-color: var(--accent-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--dark-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--hover-color);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-image {
    height: 250px;
    /* background: linear-gradient(135deg, #000000 0%, #090979 70%, #4d05e8 100%); */
    border-bottom: 2px solid var(--accent-color);
}

.game-card h4 {
    padding: 15px 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.game-card .btn {
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--text-color);
    text-align: center;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    color: var(--dark-bg);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--dark-bg);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--primary-color);
    background: var(--dark-gradient);
}

.faq-question {
    background: var(--dark-gradient);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--light-text);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-bg);
    color: var(--text-color);
}

.faq-item.active {
    border: 1px solid var(--primary-color);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-gradient);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    color: var(--text-color);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2);
}

.testimonial-card:hover::before {
    opacity: 0.1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #090979 70%, #4d05e8 100%);
    margin-right: 15px;
    border: 2px solid var(--accent-color);
}

.author-info h4 {
    font-weight: 600;
    color: var(--accent-color);
}

.rating {
    color: #ffb900;
    margin-top: 5px;
}

/* Footer */
footer {
    background: var(--dark-gradient);
    backdrop-filter: blur(10px);
    color: var(--light-text);
    padding: 70px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gradient);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    color: var(--dark-bg);
}

.social-icons a:hover {
    background: var(--dark-gradient);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    opacity: 0.6;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-warning span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--dark-bg);
    font-weight: 700;
}

.age-warning p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
    display: none;
}

@media (max-width: 768px) {
    .mobile-fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: var(--dark-gradient);
        backdrop-filter: blur(10px);
        border-top: 2px solid var(--primary-color);
    }
    
    .mobile-fixed-buttons a {
        flex: 1;
        text-align: center;
        padding: 15px 0;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-fixed-buttons .btn-primary {
        border-radius: 0;
        height: 100%;
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-fixed-buttons .btn-secondary {
        border-radius: 0;
        border: none;
        background: transparent;
        color: wheat;
        height: 100%;
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-fixed-buttons .btn-secondary:hover {
        background-color: var(--light-bg);
        color: var(--text-color);
        transform: none;
    }
    
    /* Add padding to the bottom of the page to prevent content from being hidden behind fixed buttons */
    body {
        padding-bottom: 60px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    header {
        padding: auto;
    }
    
    .logo img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    header {
        padding: auto;
    }
    
    .logo img {
        height: 80px;
    }
    
    .mobile-title {
        display: block;
        margin-bottom: 10px;
        margin-top: 110px;
    }

    .desktop-title {
        display: none;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn {
        min-width: 140px;
    }

    .mobile-title h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: auto;
    }
    
    .logo img {
        height: 60px;
    }
    .hero {
        padding: 5px 0 40px;
    }
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 80px 20px;
        transition: var(--transition);
        z-index: 1001;
        border-right: 2px solid var(--accent-color);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--light-text);
        cursor: pointer;
        z-index: 1002;
    }
    
    .cta-button {
        display: none;
    }
    
    .mobile-title h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .games-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .age-warning {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .btn {
        min-width: 120px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: auto;
    }
    
    .logo img {
        height: 60px;
        width: 60px;
    }
}

/* Header Buttons */
.header-buttons {
    display: none;
}

@media (max-width: 768px) {
    .header-buttons {
        display: flex;
        gap: 10px;
        margin-left: 10px;
    }
    
    .header-buttons .btn {
        /* padding: 8px 15px; */
        font-size: 12px;
    }
    
    .cta-button {
        display: none;
    }
}

/* Add bounce animation to interactive elements */
.btn:hover {
    animation: bounce 0.5s ease-in-out;
    box-shadow: none;
    transform: none;
}

.feature-card:hover {
    animation: bounce 0.5s ease-in-out;
    border-color: var(--primary-color);
}

.testimonial-card:hover {
    animation: bounce 0.5s ease-in-out;
    transform: none;
    border-color: var(--primary-color);
}

/* Define bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.turtle-eye {
    color: var(--gold-accent);
}

.icon-accent {
    color: var(--gradient);
}

.social-icon:hover {
    color: var(--gradient);
    transform: scale(1.1);
}