/* ============================================
   CUANUNITED STYLE.CSS - SLOT GACOR THEME
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e60000;
    --primary-dark: #b30000;
    --gold: #ffd700;
    --gold-dark: #d4af37;
    --dark: #0a0a0a;
    --dark-card: #1a1a1a;
    --text: #ffffff;
    --text-muted: #cccccc;
    --glow: #ff0033;
}

body {
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* ============ HEADER ============ */
.seo-header {
    background: linear-gradient(90deg, #1a0000, #330000);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(230, 0, 0, 0.4);
    border-bottom: 2px solid var(--gold);
}
.seo-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.seo-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.seo-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.seo-nav a:hover { color: var(--gold); }
.btn-daftar {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(230,0,0,0.6);
    animation: pulse-btn 2s infinite;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    background: rgba(0,0,0,0.5);
    padding: 10px 0;
    font-size: 14px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ============ HERO SECTION ============ */
.hero-section {
    padding: 60px 0;
    background: radial-gradient(circle at center, rgba(230,0,0,0.15), transparent 70%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text h2 { font-size: 1.5rem; color: var(--gold); margin-bottom: 20px; }
.hero-desc { color: var(--text-muted); margin-bottom: 25px; font-size: 1.05rem; }
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.badge {
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold);
}
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }

/* ============ GLOW IMAGE (Efek Menyala) ============ */
.glow-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}
.glow-image {
    max-width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow), 
                    0 0 40px var(--primary), 
                    0 0 60px rgba(255,0,51,0.5);
    }
    50% {
        box-shadow: 0 0 40px var(--gold), 
                    0 0 70px var(--primary), 
                    0 0 100px rgba(255,215,0,0.6);
    }
}
.glow-ring {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--primary), var(--glow));
    background-size: 400% 400%;
    z-index: 1;
    filter: blur(15px);
    opacity: 0.7;
    animation: gradient-rotate 4s ease infinite;
}
@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* GIF di bawah gambar dengan glow */
.gif-wrapper {
    margin-top: 25px;
    text-align: center;
    position: relative;
}
.cuan-gif {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 25px rgba(255,215,0,0.6),
                0 0 50px rgba(230,0,0,0.4);
    animation: glow-pulse 3s infinite;
}

/* ============ TICKER / MARQUEE ============ */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    padding: 12px 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}
.ticker {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
    gap: 50px;
}
.ticker span { font-weight: 700; color: #fff; font-size: 0.95rem; }
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ FITUR BADGES ============ */
.fitur-badges { padding: 50px 0; }
.badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.badge-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: 0.3s;
}
.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(255,215,0,0.4);
    border-color: var(--gold);
}
.badge-icon { font-size: 2.5rem; margin-bottom: 10px; }
.badge-item h3 { color: var(--gold); font-size: 1.1rem; }
.badge-item p { color: var(--text-muted); font-size: 0.85rem; }

/* ============ SECTION TITLE ============ */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-title p { color: var(--text-muted); }

/* ============ PRODUCT SECTION ============ */
.product-section { padding: 60px 0; }
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: var(--dark-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,215,0,0.3);
}
.product-main-img { width: 100%; border-radius: 12px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 15px; }
.thumb {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}
.thumb.active, .thumb:hover { border-color: var(--gold); }
.product-nav-buttons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 20px;
}
.nav-btn {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    transition: 0.3s;
}
.nav-btn:hover { transform: scale(1.05); box-shadow: 0 0 15px var(--glow); }

.product-breadcrumb span {
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}
.product-title { font-size: 1.6rem; margin: 15px 0; line-height: 1.4; }
.product-rating { margin-bottom: 20px; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 1.2rem; }
.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.price-label { color: var(--text-muted); font-size: 0.9rem; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.price-old { text-decoration: line-through; color: #888; }
.price-discount { background: var(--primary); padding: 4px 10px; border-radius: 5px; font-weight: 700; }

/* INFO TABLE */
.info-table {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,215,0,0.2);
}
.info-table h3 { color: var(--gold); margin-bottom: 15px; font-size: 1.1rem; }
.info-table table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.info-table td:first-child { color: var(--text-muted); }
.highlight-cell { color: var(--gold); font-weight: 700; text-align: right; }

/* SHIPMENT */
.shipment-info { margin-bottom: 25px; }
.shipment-info h3 { color: var(--gold); margin-bottom: 15px; }
.shipment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.ship-item {
    display: flex;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.ship-icon { font-size: 1.8rem; }
.ship-item strong { color: var(--gold); }
.ship-item p { font-size: 0.85rem; color: var(--text-muted); }

/* PRODUCT CTA */
.product-cta { display: flex; gap: 15px; margin-bottom: 25px; }
.btn-main-login, .btn-main-daftar {
    flex: 1;
    padding: 16px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}
.btn-main-login { background: #333; color: #fff; border: 2px solid var(--gold); }
.btn-main-daftar { background: linear-gradient(45deg, var(--primary), var(--primary-dark)); color: #fff; }

/* PAYMENT */
.payment-methods p { color: var(--text-muted); margin-bottom: 10px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-icon {
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ============ BUTTONS ============ */
.btn-primary, .btn-secondary, .btn-chat {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
}
.btn-primary { background: linear-gradient(45deg, var(--primary), var(--primary-dark)); color: #fff; }
.btn-secondary { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-chat { background: #25D366; color: #fff; }
.glow-btn { animation: pulse-btn 2s infinite; }
@keyframes pulse-btn {
    0%,100% { box-shadow: 0 0 15px var(--glow); }
    50% { box-shadow: 0 0 35px var(--glow), 0 0 50px var(--primary); }
}
.btn-primary:hover, .btn-secondary:hover, .btn-chat:hover { transform: scale(1.05); }

/* ============ ARTIKEL ============ */
.artikel-section { padding: 60px 0; }
.seo-article {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.2);
}
.seo-article h2 { font-size: 2rem; margin-bottom: 20px; color: var(--gold); }
.seo-article h3 { font-size: 1.4rem; margin: 30px 0 15px; color: var(--gold); }
.seo-article p { margin-bottom: 15px; color: var(--text-muted); }
.slot-list, .bonus-list, .cara-daftar { margin: 15px 0 15px 20px; }
.slot-list li, .bonus-list li, .cara-daftar li {
    padding: 8px 0;
    color: var(--text-muted);
}
.payment-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
    margin: 20px 0;
}
.pay-article-item {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,215,0,0.2);
}
.pay-article-item strong { color: var(--gold); }

/* COMPARISON TABLE */
.comparison-table { overflow-x: auto; margin: 20px 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.comparison-table th { background: var(--primary); color: #fff; }
.comparison-table .green { color: #2ecc71; font-weight: 700; }
.comparison-table .red { color: #e74c3c; }

/* ============ REVIEW SECTION ============ */
.review-section { padding: 60px 0; background: rgba(0,0,0,0.3); }
.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.big-rating { font-size: 4rem; font-weight: 800; color: var(--gold); }
.stars-big { color: var(--gold); font-size: 1.5rem; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 20px;
}
.review-card {
    background: var(--dark-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.2);
    transition: 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 5px 25px rgba(255,215,0,0.3); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.reviewer-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; }
.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { color: var(--gold); }
.verified-badge { font-size: 0.75rem; color: #2ecc71; }
.review-text { color: var(--text-muted); margin-bottom: 15px; font-size: 0.95rem; }
.review-footer { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }
.review-game { color: var(--gold); }
.review-win { color: #2ecc71; font-weight: 700; }
.review-date { color: #888; }

/* RATING BREAKDOWN */
.rating-breakdown { max-width: 500px; margin: 40px auto 0; }
.rating-breakdown h3 { text-align: center; margin-bottom: 20px; color: var(--gold); }
.rating-bar-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bar-track { flex: 1; height: 10px; background: #333; border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--primary)); }

/* ============ FAQ SECTION ============ */
.faq-section { padding: 60px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--dark-card);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,215,0,0.2);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon { color: var(--gold); font-size: 1.5rem; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

/* ============ BOTTOM CTA (lanjutan) ============ */
.bottom-cta h2 { font-size: 2.3rem; margin-bottom: 15px; }
.bottom-cta p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 10px; }
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ============ STICKY BOTTOM NAV ============ */
.sticky-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: linear-gradient(90deg, #1a0000, #330000);
    border-top: 2px solid var(--gold);
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(230,0,0,0.5);
}
.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 14px 5px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.sticky-btn:hover { background: rgba(255,215,0,0.15); color: var(--gold); }
.sticky-daftar {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    animation: pulse-btn 2s infinite;
}

/* ============ FOOTER ============ */
.main-footer {
    background: #0a0a0a;
    padding: 50px 0 100px;
    border-top: 2px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-brand p { color: var(--text-muted); margin: 15px 0; font-size: 0.9rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-badges span {
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--gold-dark);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--gold);
}
.footer-links h4, .footer-games h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 15px;
}
.footer-links ul, .footer-games ul, .footer-contact ul { list-style: none; }
.footer-links li, .footer-games li, .footer-contact li { padding: 6px 0; }
.footer-links a, .footer-games a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover, .footer-games a:hover { color: var(--gold); }
.footer-payment { margin-top: 20px; }
.footer-pay-icons { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-pay-icons span {
    background: #fff;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============ RESPONSIVE (MOBILE) ============ */
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-text h2 { font-size: 1.2rem; }
    .hero-badges, .hero-cta { justify-content: center; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .product-layout { grid-template-columns: 1fr; padding: 20px; }
    .product-title { font-size: 1.3rem; }
    .price-amount { font-size: 1.8rem; }
    .shipment-grid { grid-template-columns: 1fr; }
    .product-cta { flex-direction: column; }
    .seo-article { padding: 20px; }
    .seo-article h2 { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 1.6rem; }
    .bottom-cta h2 { font-size: 1.6rem; }
    .seo-nav { gap: 12px; font-size: 0.85rem; }
    .big-rating { font-size: 2.5rem; }
    .sticky-btn { font-size: 0.7rem; padding: 12px 3px; }
}

@media (max-width: 480px) {
    .badges-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-thumbs { justify-content: center; }
}

