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

html {
    height: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgb(40, 65, 70) 0%, rgb(30, 50, 55) 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.fullscreen-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr;
    min-height: 100vh;
    width: 100vw;
    gap: 0;
}

.left-panel,
.right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-panel {
    background: linear-gradient(135deg, rgba(130, 90, 30, 0.1) 0%, rgba(130, 90, 30, 0.05) 100%);
    border-right: 1px solid rgba(130, 90, 30, 0.2);
}

.right-panel {
    background: linear-gradient(135deg, rgba(130, 90, 30, 0.05) 0%, rgba(130, 90, 30, 0.1) 100%);
    border-left: 1px solid rgba(130, 90, 30, 0.2);
}

.center-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(130, 90, 30, 0.03) 0%, transparent 70%);
    width: 100%;
    height: 100%;
}

.poster-container {
    perspective: 1200px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.poster-image {
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(130, 90, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-2deg) rotateX(1deg) translateZ(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.1);
    position: relative;
}

.poster-image:hover {
    transform: rotateY(0deg) rotateX(0deg) translateZ(30px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(130, 90, 30, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    filter: brightness(1.1) contrast(1.15);
}

.poster-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgb(130, 90, 30), transparent, rgb(130, 90, 30));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.info-section,
.links-section {
    background: linear-gradient(135deg, rgba(130, 90, 30, 0.08) 0%, rgba(130, 90, 30, 0.04) 100%);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(130, 90, 30, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

/* Override any cached hover effects - NO TRANSFORMS! */
.info-section:hover {
    transform: none !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(130, 90, 30, 0.3);
}

.links-section:hover {
    transform: none !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(130, 90, 30, 0.5);
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(130, 90, 30, 0.1), transparent);
    transition: left 0.6s ease;
}

.links-section:hover::before {
    left: 100%;
}

.info-section h1,
.info-section h2,
.links-section h2 {
    color: white !important;
    font-family: 'Bebas Neue', 'Oswald', 'Anton', 'Impact', 'Arial Black', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    font-stretch: condensed !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1 !important;
}

.info-text {
    font-size: 0.95rem;
    text-align: justify;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.links-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(130, 90, 30, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-button::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.6s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(130, 90, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(130, 90, 30, 0.6);
}

/* All buttons now use the same styling - no specific overrides needed */

@media (max-width: 1200px) {
    .fullscreen-container {
        grid-template-columns: 1fr 1.5fr 1fr;
    }
    
    .left-panel,
    .right-panel {
        padding: 1.5rem;
    }
    
    .info-section,
    .links-section {
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .poster-image {
        max-width: 85%;
        max-height: 80vh;
    }
}

@media (max-width: 950px) {
    .fullscreen-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
        padding: 0.5rem;
        min-height: 100vh;
    }
    
    .center-panel {
        order: 1;
    }
    
    .left-panel {
        order: 2;
        padding: 0;
    }
    
    .right-panel {
        order: 3;
        padding: 0;
    }
    
    .left-panel,
    .right-panel {
        height: auto;
        min-height: auto;
    }
    
    .info-section,
    .links-section {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .poster-image {
        max-width: 70%;
        max-height: 60vh;
        height: auto;
        transform: none;
    }
    
    .links-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .link-button {
        width: 50px;
        height: 50px;
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .fullscreen-container {
        padding: 0.3rem;
        gap: 0.3rem;
    }
    
    .info-section,
    .links-section {
        padding: 1rem;
    }
    
    .info-section h2,
    .links-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .poster-image {
        max-width: 80%;
        max-height: 50vh;
        height: auto;
    }
    
    .link-button {
        width: 45px;
        height: 45px;
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}
