:root {
    --bg-color: #000000;
    --text-color: #e0e0e0;
    --accent-color: #ff6600;
    --secondary-bg: #111111;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

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

header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 15px;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    animation: fadeInDown 1.5s ease-out;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 2px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

section {
    padding: 100px 0;
}

#about {
    background-color: var(--secondary-bg);
    text-align: center;
}

#music {
    text-align: center;
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--accent-color);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.platform-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    background-color: #222;
    display: block;
    text-decoration: none;
}

.platform-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(40%) brightness(0.7);
}

.platform-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.platform-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    opacity: 1;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.platform-info span {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--text-color);
}

.platform-item:hover .platform-info {
    background: linear-gradient(transparent, var(--accent-color));
}

.platform-item:hover .platform-info span {
    color: white;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}


footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.social-links-footer {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-footer a {
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-3px);
}

.social-links-footer svg {
    width: 24px;
    height: 24px;
}

footer p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.8rem;
        letter-spacing: 5px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}
