* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Accessibility - visually hidden but readable by screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Global link styling */
a {
    color: rgba(77, 208, 225, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: rgba(0, 229, 255, 1);
}

/* Animated background gradient */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 40, 80, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(20, 0, 60, 0.3) 0%, transparent 50%),
                #000;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

/* Canvas for particles */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    position: relative;
    z-index: 10;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.box {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 40px;
    animation: fadeInScale 1.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo img {
    width: 90vw;
    max-width: 1200px;
    height: auto;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.9;
}

.links {
    font-size: clamp(2rem, 5vw, 3rem);
    display: flex;
    justify-content: center;
    gap: 1.5em;
    animation: fadeInUp 1.5s ease-out 0.3s both;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.links a {
    color: #4dd0e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.links a:hover {
    color: #00e5ff;
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    right: 40px;
    cursor: pointer;
    z-index: 100;
    animation: fadeInUp 2s ease-out 1s both;
}

.scroll-indicator.hidden {
    display: none;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(77, 208, 225, 0.6);
    border-bottom: 2px solid rgba(77, 208, 225, 0.6);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    position: relative;
}

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

.scroll-indicator:hover .scroll-arrow {
    border-color: rgba(77, 208, 225, 1);
}

/* Shared Styling */
.section-title {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(77, 208, 225, 0.8);
    margin-bottom: 30px;
    font-weight: 400;
}

.date {
    color: rgba(77, 208, 225, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* News Section */
.news {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    border-bottom: 1px solid rgba(77, 208, 225, 0.15);
}

.news-list {
    list-style: none;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Releases Section */
.releases {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.releases .section-title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.releases-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.release-card {
    flex: 0 1 calc(50% - 30px);
    max-width: 500px;
    min-width: 300px;
}

.release-cover {
    width: 100%;
    aspect-ratio: 1;
    background: #111;
    border: 1px solid rgba(77, 208, 225, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.release-cover:hover {
    border-color: rgba(77, 208, 225, 0.6);
    box-shadow: 0 0 30px rgba(77, 208, 225, 0.3);
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.release-cover:hover img {
    transform: scale(1.05);
}

.release-info {
    margin-top: 20px;
}

.release-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.release-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.release-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.release-link {
    padding: 10px 20px;
    background: rgba(77, 208, 225, 0.1);
    border: 1px solid rgba(77, 208, 225, 0.3);
    color: #4dd0e1;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.release-link:hover {
    background: rgba(77, 208, 225, 0.2);
    border-color: rgba(77, 208, 225, 0.6);
    color: #00e5ff;
    box-shadow: 0 0 15px rgba(77, 208, 225, 0.3);
}

/* Footer */
.footer {
    position: relative;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid rgba(77, 208, 225, 0.1);
}

.footer-content {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.footer-content a {
    color: rgba(77, 208, 225, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: rgba(77, 208, 225, 1);
}

@media (max-width: 768px) {
    .logo {
        margin-bottom: 30px;
    }
    
    .links {
        gap: 1em;
    }
    
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
    }
    
    .releases {
        padding: 60px 20px;
    }
    
    .news {
        padding: 40px 20px;
    }
    
    .footer {
        padding: 40px 20px;
    }
    
    .releases-grid {
        gap: 40px;
    }
    
    .release-card {
        flex: 1 1 100%;
    }
}
