
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #00ff88;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #003322 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem 2rem;
}

header {
    text-align: center;
    padding: 2rem 0;
    text-shadow: 0 0 10px #00ff88;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: #1a1a1a;
    border: 3px solid #00ff88;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    line-height: 120px;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
}

h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #00ff88;
    display: inline-block;
    margin-bottom: 1rem;
}

.about, .platforms, .gallery, footer {
    margin: 3rem 0;
    text-align: center;
}

.platform-images a img, .gallery-images img {
    width: 140px;
    margin: 0.5rem;
    border: 2px solid #00ff88;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.platform-images a img:hover, .gallery-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ff88;
}

a {
    color: #00ff88;
    text-decoration: none;
}

footer {
    font-size: 0.9rem;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #00ff88;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
