/* Fontes */
@font-face {
    font-family: 'sd-asian';
    src: url('../fonts/sd-asian.ttf') format('truetype');
    font-display: swap;
}

/* Estilos Base */
body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

body, *:hover { 
    cursor: url(../images/cursor.png), auto; 
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 200px;
    transition: all 0.3s ease;
}

.nav-link {
    font-family: 'sd-asian', sans-serif;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    position: relative;
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #EAAC15;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Banner */
.banner {
    position: relative;
    height: 500px;
    background-image: url('../images/cinema.gif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 56px; /* Altura da navbar */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    font-size: 3rem;
    color: #EAAC15;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Plataformas */
.platform-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(234, 172, 21, 0.3);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(234, 172, 21, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #EAAC15;
}

.platform-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-logo {
    transform: scale(1.05);
}

.platform-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.platform-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: auto;
}

/* Controle de Volume */
.volume-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    z-index: 1000;
}

.volume-btn {
    background: none;
    border: none;
    color: #EAAC15;
    font-size: 1.2rem;
    cursor: pointer;
}

.volume-slider {
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #EAAC15;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 992px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .platform-logo {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .banner {
        background-image: url('../images/himeno.png');
        height: 400px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .platform-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 300px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .platform-logo {
        max-width: 100px;
    }
    
    .platform-description {
        font-size: 1rem;
    }
}