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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, #0d5c0d 0%, #1a8c1a 50%, #0d5c0d 100%);
    color: #fff;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* Lucky clover background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header - NON-STICKY */
header {
    background: linear-gradient(90deg, #228b22, #32cd32, #228b22);
    padding: 25px 0;
    text-align: center;
    border-bottom: 4px solid #ffd700;
    box-shadow: 0 6px 35px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 10;
    /* NO position sticky */
}

header img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(255, 215, 0, 0.8));
}

header h1 {
    color: #ffd700;
    font-size: 2em;
    margin-top: 15px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 1), 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Navigation - NON-STICKY with PLAY button */
nav {
    background: rgba(13, 92, 13, 0.95);
    padding: 18px 0;
    border-bottom: 3px solid #ffd700;
    position: relative;
    z-index: 10;
    /* NO position sticky */
}

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

nav ul li a {
    color: #ffd700;
    text-decoration: none;
    padding: 14px 28px;
    display: block;
    background: linear-gradient(135deg, #228b22, #32cd32);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 700;
    border: 3px solid #ffd700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #228b22;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.7);
}

/* PLAY button special styling */
nav ul li a[rel="nofollow"] {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-color: #ffd700;
    animation: lucky-sparkle 2s infinite;
}

@keyframes lucky-sparkle {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.9), 0 0 50px rgba(255, 215, 0, 0.7); }
}

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

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

/* Lucky Clover Layout (Layout #22) */
.lucky-section {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.5), rgba(50, 205, 50, 0.4));
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    border: 4px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.lucky-section::before {
    content: '🍀';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.lucky-section h2 {
    color: #ffd700;
    font-size: 2.2em;
    margin-bottom: 22px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 2px 2px 6px rgba(0,0,0,0.9);
}

.lucky-section p {
    font-size: 1.15em;
    margin-bottom: 20px;
    text-align: justify;
    color: #fff;
    line-height: 1.8;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(255, 215, 0, 0.5);
    border: 5px 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(13,92,13,0.95), transparent);
    padding: 50px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 1), 3px 3px 6px rgba(0,0,0,0.9);
}

.hero-overlay p {
    font-size: 1.5em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 2px 2px 4px rgba(0,0,0,0.8);
}

/* Lucky Grid - Clover Pattern */
.lucky-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.lucky-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.7), rgba(50, 205, 50, 0.6));
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(255, 215, 0, 0.7);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.lucky-card::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    opacity: 0;
    transition: all 0.4s;
}

.lucky-card:hover::after {
    opacity: 1;
    transform: rotate(360deg);
}

.lucky-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 50px rgba(255, 215, 0, 0.7);
    border-color: #ffd700;
}

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

.lucky-card h3 {
    padding: 20px;
    color: #ffd700;
    font-size: 1.4em;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.lucky-card p {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #fff;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    margin: 25px auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    border: 4px solid #ffd700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8);
}

/* FAQ */
.faq-item {
    background: rgba(34, 139, 34, 0.5);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    border-left: 6px solid #ffd700;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 1.3em;
}

/* Reviews */
.review {
    background: rgba(34, 139, 34, 0.5);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    border-left: 6px solid #ff6b35;
}

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

.review-author {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1em;
}

.review-rating {
    color: #ffd700;
    font-size: 1.3em;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d5c0d, #1a8c1a);
    color: #fff;
    padding: 50px 25px 25px;
    margin-top: 70px;
    border-top: 5px solid #ffd700;
    position: relative;
    z-index: 10;
}

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

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 18px;
    font-size: 1.4em;
}

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

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

.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, #228b22, #32cd32);
    color: #ffd700;
    padding: 12px 25px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 12px;
    font-weight: bold;
    border: 3px solid #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    color: #32cd32;
}

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