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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #E2E8F0;
    background-color: #1A1A1A;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #CBD5E0;
}

a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #E55D2B;
}

/* Brand and Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

/* Buttons */
.cta-primary, .cta-secondary, .product-cta {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-primary, .product-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #E55D2B 100%);
    color: #FFFFFF;
}

.cta-primary:hover, .product-cta:hover {
    background: linear-gradient(135deg, #E55D2B 0%, #D44A1F 100%);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #4A5568;
}

.cta-secondary:hover {
    background: #4A5568;
    border-color: #4A5568;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    color: #CBD5E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    min-height: 200px;
}

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

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

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FF6B35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #CBD5E0;
}

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

.hero-image {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.game-image, .matchmaking-image, .tools-image, .tournament-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.matchmaking-image, .tools-image, .tournament-image {
    height: 350px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #2D2D2D;
    text-align: center;
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #4A5568;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #FF6B35;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* Catalog Showcase */
.catalog-showcase {
    padding: 6rem 0;
    background: #1A1A1A;
    text-align: center;
}

.catalog-showcase h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.game-card {
    background: #2D2D2D;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4A5568;
}

.game-image {
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.game-info {
    padding: 1.5rem;
    text-align: left;
}

.game-info h4 {
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #94A3B8;
    margin-bottom: 1rem;
}

.game-rating {
    color: #FF6B35;
    font-weight: 600;
}

/* Matchmaking Section */
.matchmaking {
    padding: 6rem 0;
    background: #2D2D2D;
    text-align: center;
}

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

.matchmaking-features {
    list-style: none;
    margin-top: 2rem;
}

.matchmaking-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #CBD5E0;
}

.matchmaking-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

.matchmaking-visual .placeholder-image {
    height: 350px;
}
.creation-tools {
    padding: 6rem 0;
    background: #1A1A1A;
    text-align: center;
}

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

.tools-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94A3B8;
    font-size: 0.875rem;
}

.tools-visual .placeholder-image {
    height: 350px;
}
.analytics {
    padding: 6rem 0;
    background: #2D2D2D;
    text-align: center;
}

.analytics h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.analytics-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #4A5568;
    text-align: left;
}

.analytics-card h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
}

/* Tournaments Section */
.tournaments {
    padding: 6rem 0;
    background: #1A1A1A;
    text-align: center;
}

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

.tournament-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tournament-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tournament-feature strong {
    color: #FF6B35;
    font-weight: 600;
}

.tournament-feature span {
    color: #94A3B8;
    font-size: 0.875rem;
}

.tournament-visual .placeholder-image {
    height: 350px;
}
.products {
    padding: 6rem 0;
    background: #2D2D2D;
    text-align: center;
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.product-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #4A5568;
    position: relative;
    text-align: center;
}

.product-card.featured {
    border-color: #FF6B35;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B1B 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #E55D2B 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.price span {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 400;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #CBD5E0;
    border-bottom: 1px solid #4A5568;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #1A1A1A;
    text-align: center;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: #2D2D2D;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #4A5568;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #E2E8F0;
    font-size: 1.125rem;
}

.testimonial-author strong {
    color: #FF6B35;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94A3B8;
    font-size: 0.875rem;
}

/* Contacts Section */
.contacts {
    padding: 6rem 0;
    background: #2D2D2D;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #4A5568;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #FF6B35;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #E2E8F0;
    margin: 0;
}

/* Footer */
.footer {
    background: #0F0F0F;
    padding: 4rem 0 2rem;
    border-top: 1px solid #4A5568;
}

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

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-brand .logo {
    width: 50px;
    height: 50px;
}

.footer-brand .brand-name {
    font-size: 1.5rem;
}

.footer-brand p {
    color: #94A3B8;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h5 {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #94A3B8;
    font-weight: 400;
}

.footer-column a:hover {
    color: #FF6B35;
}

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

.footer-bottom p {
    color: #94A3B8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .matchmaking-content,
    .tools-content,
    .tournament-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tools-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .features,
    .catalog-showcase,
    .matchmaking,
    .creation-tools,
    .analytics,
    .tournaments,
    .products,
    .testimonials,
    .contacts {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .tools-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}