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

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
    color: #fff;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* Diamond pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 215, 0, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 215, 0, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    pointer-events: none;
    z-index: 0;
}

/* Header - NON-STICKY */
header {
    background: linear-gradient(135deg, #1a1a1a, #2d1a00, #1a1a1a);
    padding: 30px 0;
    text-align: center;
    border-bottom: 5px solid #FFD700;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 10;
    /* NO position sticky */
}

header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

header img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.9));
}

header h1 {
    color: #FFD700;
    font-size: 2.2em;
    margin-top: 18px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 1), 3px 3px 6px rgba(0,0,0,0.9);
    font-weight: 700;
    letter-spacing: 3px;
}

/* Navigation - NON-STICKY with PLAY button */
nav {
    background: rgba(26, 10, 0, 0.95);
    padding: 20px 0;
    border-bottom: 4px solid #FFD700;
    position: relative;
    z-index: 10;
    /* NO position sticky */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    padding: 16px 32px;
    display: block;
    background: linear-gradient(135deg, #2d1a00, #4d2a00);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 700;
    border: 3px solid #FFD700;
    font-size: 1.05em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav ul li a:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a0a00;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.8);
}

/* PLAY button special styling */
nav ul li a[rel="nofollow"] {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a0a00;
    border-color: #fff;
    animation: diamond-shine 3s infinite;
}

@keyframes diamond-shine {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 165, 0, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.9), 0 0 60px rgba(255, 165, 0, 0.7); }
}

nav ul li a[rel="nofollow"]:hover {
    background: linear-gradient(135deg, #fff, #FFD700);
    color: #000;
}

main {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}

/* Diamond Grid Layout (Layout #25) */
.diamond-section {
    background: linear-gradient(135deg, rgba(45, 26, 0, 0.7), rgba(77, 42, 0, 0.6));
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 45px;
    border: 5px solid rgba(255, 215, 0, 0.7);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.diamond-section::before {
    content: '💎';
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 180px;
    opacity: 0.08;
    transform: rotate(25deg);
}

.diamond-section h2 {
    color: #FFD700;
    font-size: 2.4em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 3px 3px 8px rgba(0,0,0,0.9);
}

.diamond-section p {
    font-size: 1.2em;
    margin-bottom: 22px;
    text-align: justify;
    color: #fff;
    line-height: 1.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 45px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(255, 215, 0, 0.6);
    border: 6px solid #FFD700;
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
    padding: 60px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 18px;
    text-shadow: 0 0 35px rgba(255, 215, 0, 1), 4px 4px 8px rgba(0,0,0,0.9);
}

.hero-overlay p {
    font-size: 1.6em;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.8), 3px 3px 6px rgba(0,0,0,0.9);
}

/* Diamond Grid */
.diamond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.diamond-card {
    background: linear-gradient(135deg, rgba(45, 26, 0, 0.9), rgba(77, 42, 0, 0.8));
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid rgba(255, 215, 0, 0.8);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.diamond-card::after {
    content: '◆';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 50px;
    color: #FFD700;
    opacity: 0;
    transition: all 0.4s;
    transform: scale(0);
}

.diamond-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}

.diamond-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.8);
    border-color: #FFA500;
}

.diamond-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.diamond-card h3 {
    padding: 22px;
    color: #FFD700;
    font-size: 1.5em;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.diamond-card p {
    padding: 0 22px 22px;
    font-size: 1.05em;
    color: #fff;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a0a00;
    padding: 22px 55px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.4em;
    font-weight: bold;
    margin: 30px auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
    border: 4px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #fff, #FFD700);
    color: #000;
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(255, 215, 0, 0.9);
}

/* FAQ */
.faq-item {
    background: rgba(45, 26, 0, 0.7);
    padding: 28px;
    margin-bottom: 22px;
    border-radius: 15px;
    border-left: 8px solid #FFD700;
}

.faq-item h3 {
    color: #FFD700;
    margin-bottom: 14px;
    font-size: 1.4em;
}

/* Reviews */
.review {
    background: rgba(45, 26, 0, 0.7);
    padding: 28px;
    margin-bottom: 28px;
    border-radius: 15px;
    border-left: 8px solid #FFA500;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-author {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.15em;
}

.review-rating {
    color: #FFA500;
    font-size: 1.4em;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a, #1a0a00);
    color: #fff;
    padding: 55px 30px 30px;
    margin-top: 80px;
    border-top: 6px solid #FFD700;
    position: relative;
    z-index: 10;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.license-badge {
    background: linear-gradient(135deg, #2d1a00, #4d2a00);
    color: #FFD700;
    padding: 14px 28px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 14px;
    font-weight: bold;
    border: 3px solid #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.6em;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .diamond-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay h2 {
        font-size: 2.2em;
    }
    
    .hero-overlay p {
        font-size: 1.2em;
    }
}
