/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    position: sticky;
    top: 0;
    border-bottom: 2px solid rgba(127, 90, 240, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    transition: all 0.3s ease;
}

.logo-coin {
    animation: spin 3s linear infinite;
    display: inline-block;
    transition: all 0.3s ease;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e2e2e2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    background: rgba(255, 204, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffcc00, #7f5af0);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(127, 90, 240, 0.4), rgba(0, 195, 255, 0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="cityscape" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23000"/><rect x="10" y="60" width="15" height="40" fill="%23333"/><rect x="30" y="40" width="20" height="60" fill="%23444"/><rect x="55" y="50" width="18" height="50" fill="%23333"/><rect x="80" y="30" width="15" height="70" fill="%23555"/></pattern></defs><rect width="1000" height="1000" fill="url(%23cityscape)"/></svg>');
    background-size: cover;
    opacity: 0.4;
    animation: cityGlow 4s ease-in-out infinite alternate;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes cityGlow {
    from { opacity: 0.4; }
    to { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7f5af0, #9d4edd);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(127, 90, 240, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffcc00, #7f5af0, #ffcc00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e2e2;
    margin-bottom: 2.5rem;
   
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(42, 42, 42, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #ffcc00;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #ffcc00;
    display: block;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #e2e2e2;
    margin-top: 0.5rem;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #ffcc00, #ff8800);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #121212;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.4);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e2e2e2;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #121212, #1a1a1a);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ffcc00;
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(127, 90, 240, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: #ffcc00;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.8);
    animation: pulse 2s infinite;
    margin-bottom: 1rem;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    background: rgba(255, 204, 0, 0.9);
    color: #121212;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.game-info {
    padding: 2rem;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.game-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.play-button {
    width: 100%;
    background: linear-gradient(135deg, #7f5af0, #9d4edd);
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.play-button:hover {
    background: linear-gradient(135deg, #9d4edd, #7f5af0);
    box-shadow: 0 8px 25px rgba(127, 90, 240, 0.4);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.3rem;
    color: #e2e2e2;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    border-left: 4px solid #7f5af0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(42, 42, 42, 0.8);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-text p {
    color: #e2e2e2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-image-section {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffcc00;
}

.overlay-content p {
    font-size: 0.95rem;
    color: #e2e2e2;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1a1a, #121212);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 90, 240, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #7f5af0;
    box-shadow: 0 20px 40px rgba(127, 90, 240, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

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

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffcc00;
}

.feature-description {
    color: #e2e2e2;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-image {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.feature-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

/* Providers Section */
.providers-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.providers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.provider-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.provider-logo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.provider-details h3 {
    font-size: 1.8rem;
    color: #ffcc00;
    margin-bottom: 1.5rem;
}

.provider-details p {
    font-size: 1.1rem;
    color: #e2e2e2;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.provider-features li {
    color: #e2e2e2;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    padding-left: 0.5rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    text-align: center;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.disclaimer-text {
    font-size: 1.2rem;
    color: #e2e2e2;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.disclaimer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #7f5af0, #9d4edd);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(127, 90, 240, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #121212;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 1.2rem;
    color: #e2e2e2;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-feature:hover {
    background: rgba(42, 42, 42, 0.8);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #e2e2e2;
    font-size: 0.95rem;
}

.contact-button {
    background: linear-gradient(135deg, #ffcc00, #ff8800);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #121212;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.4);
}

.contact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 3rem 0;
    border-top: 2px solid #7f5af0;
    box-shadow: 0 -5px 20px rgba(127, 90, 240, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-info {
    text-align: center;
}

.footer-text {
    color: #e2e2e2;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: #b0b0b0;
    font-size: 0.85rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #ffcc00;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-link:hover {
    color: #7f5af0;
    text-shadow: 0 0 10px rgba(127, 90, 240, 0.5);
    background: rgba(127, 90, 240, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content,
    .contact-content,
    .provider-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text-section .section-title,
    .contact-text-section .section-title {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .disclaimer-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: fadeInUp 0.6s ease forwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }
.game-card:nth-child(7) { animation-delay: 0.7s; }
.game-card:nth-child(8) { animation-delay: 0.8s; }