* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --steam-color: #171a21;
    --patreon-color: #ff424d;
    --kofi-color: #13c3ff;
    --discord-color: #5865f2;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    background: var(--gradient-primary);
    margin: 2rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
}

.logo-section {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.company-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.org-number {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Content Section */
.content {
    flex: 1;
    padding: 2rem 0;
}

.about {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Platform Section */
.platforms {
    margin-bottom: 4rem;
}

.platforms h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.platform-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

.platform-card.steam:hover {
    border-color: var(--steam-color);
    box-shadow: 0 20px 40px rgba(23, 26, 33, 0.4);
}

.platform-card.patreon:hover {
    border-color: var(--patreon-color);
    box-shadow: 0 20px 40px rgba(255, 66, 77, 0.4);
}

.platform-card.kofi:hover {
    border-color: var(--kofi-color);
    box-shadow: 0 20px 40px rgba(19, 195, 255, 0.4);
}

.platform-card.discord:hover {
    border-color: var(--discord-color);
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.4);
}

.platform-icon {
    font-size: 3rem;
    margin-right: 1.5rem;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steam .platform-icon {
    color: #66c0f4;
}

.patreon .platform-icon {
    color: var(--patreon-color);
}

.kofi .platform-icon {
    color: var(--kofi-color);
}

.discord .platform-icon {
    color: var(--discord-color);
}

.platform-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.platform-info p {
    opacity: 0.8;
    font-size: 1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        margin: 1rem 0;
        min-height: 40vh;
    }
    
    .logo-section {
        padding: 1.5rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .platform-icon {
        font-size: 2.5rem;
        margin-right: 1rem;
        min-width: 60px;
    }
    
    .about, .platforms {
        margin-bottom: 3rem;
    }
    
    .about {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .platform-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .platform-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .about, .platforms {
    animation: fadeInUp 0.8s ease forwards;
}

.about {
    animation-delay: 0.2s;
}

.platforms {
    animation-delay: 0.4s;
}

.platform-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.platform-card:nth-child(1) { animation-delay: 0.6s; }
.platform-card:nth-child(2) { animation-delay: 0.7s; }
.platform-card:nth-child(3) { animation-delay: 0.8s; }
.platform-card:nth-child(4) { animation-delay: 0.9s; }
