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

body {
    font-family: 'Arial', sans-serif;
    background: #1A1A1A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid #00FFFF;
    background: rgba(0, 255, 255, 0.1);
    object-fit: cover;
    width: 100%;
    max-height: 400px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00FFFF 0%, #FF00FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #CCCCCC;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00FFFF 0%, #0080FF 100%);
    color: #1A1A1A;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
}

.btn-secondary:hover {
    background: #00FFFF;
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00FFFF;
}

.about-section > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00FFFF;
}

.feature-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Games Showcase */
.games-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    text-align: center;
}

.games-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00FFFF;
}

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

.game-card {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

.game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00FFFF;
}

.game-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00FFFF;
}

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

.product-card {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.product-card.featured {
    border-color: #FF00FF;
    background: rgba(255, 0, 255, 0.1);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00FFFF;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF00FF;
    margin-bottom: 1.5rem;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-card ul li {
    color: #CCCCCC;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.product-card ul li::before {
    content: '✓';
    color: #00FFFF;
    position: absolute;
    left: 0;
}

.btn-product {
    background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 100%);
    color: #1A1A1A;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

/* Creator Tools */
.creator-tools {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    text-align: center;
}

.creator-tools h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00FFFF;
}

.creator-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.creator-text {
    flex: 1;
    text-align: left;
}

.creator-text p {
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.creator-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.creator-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-number {
    background: linear-gradient(135deg, #00FFFF 0%, #FF00FF 100%);
    color: #1A1A1A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.creator-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.creator-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #00FFFF;
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    max-height: 300px;
}

/* Leaderboards */
.leaderboards {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
    text-align: center;
}

.leaderboards h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00FFFF;
}

.leaderboards p {
    color: #CCCCCC;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-preview {
    display: flex;
    justify-content: center;
}

.leaderboard-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border: 2px solid #00FFFF;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
}

/* Community */
.community {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    text-align: center;
}

.community h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00FFFF;
}

.community > p {
    color: #CCCCCC;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00FFFF;
    display: block;
    line-height: 1;
}

.stat-label {
    color: #CCCCCC;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Contacts */
.contacts {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
    text-align: center;
}

.contacts h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00FFFF;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    color: #00FFFF;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #CCCCCC;
    margin: 0;
}

/* Footer */
.footer {
    background: #1A1A1A;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: #00FFFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00FFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .creator-content {
        flex-direction: column;
        text-align: center;
    }
    
    .creator-text {
        text-align: center;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .about-section h2,
    .games-showcase h2,
    .products h2,
    .creator-tools h2,
    .leaderboards h2,
    .community h2,
    .contacts h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}