html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url("./photo.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;     
    padding: 60px 20px;
    box-sizing: border-box;
}

.release-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 25px;
    text-align: center;
}

.release-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.release-link:hover {
    transform: scale(1.03);
}

.release-badge {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.video-preview-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    line-height: 0;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 70px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: all 0.3s;
}

.release-link:hover .play-overlay {
    background: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

header h1 {
    margin: 20px 0 5px 0;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

main p {
    margin: 0 0 25px 0;
    font-size: 1.1rem;      
    font-weight: bold;      
    text-transform: uppercase;
    letter-spacing: 3px;    
    text-align: center;     
    opacity: 0.7;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.link-button {
    display: block;
    padding: 18px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 2px solid transparent; 
}

.link-button:hover {
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    border: 2px solid #ffffff; 
}

footer {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.footer-email {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #ffffff;
}
