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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('GoldenEye_007_cover.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

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

header {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-bottom: 30px;
}

h1 {
    color: #ffd700;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

h2 {
    color: #ffd700;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

h3 {
    color: #f0c040;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.note {
    background-color: rgba(255, 215, 0, 0.2);
    border-left: 4px solid #ffd700;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.note strong {
    color: #ffd700;
}

ul {
    list-style-position: outside;
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

em {
    color: #ffd700;
    font-style: italic;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.download-section h3 {
    margin-top: 0;
    color: #ffd700;
}

.download-link {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 10px 0;
}

.download-link:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

.md5 {
    color: #ccc;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    margin-top: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .content {
        padding: 20px;
    }
    
    footer {
        padding: 20px;
    }
}
