h1 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

h1 span {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255,215,0,.35);
}

h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 20px 0;
    position: relative;
    padding-left: 15px;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: linear-gradient(to bottom,#fff4b0 0%,#ffd700 30%,#d4af37 60%,#8c6b2f 100%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255,215,0,.35);
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin: 20px 0 10px 0;
}

/* Paragraphs */
p {
    color: #f3f3f3;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: justify;
}

/* Links */
a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

a:hover {
    color: #fff4b0;
}

/* Article highlight */
.highlight-box {
    background:
        radial-gradient(circle at top left, rgba(255,215,0,.08), transparent 42%),
        linear-gradient(145deg,#000000 0%,#0d0d0d 50%,#1a1a1a 100%);
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    box-shadow:
        0 5px 15px rgba(0,0,0,.35),
        inset 0 0 18px rgba(255,215,0,.04);
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.info-card {
    background: linear-gradient(145deg,#111111,#1a1a1a);
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: inset 0 0 12px rgba(255,215,0,.04);
}

.info-card .label {
    font-size: 14px;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card .value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
}

/* FAQ Accordion */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 16px;
    overflow: hidden;
    background: #0d0d0d;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: linear-gradient(135deg,#000000,#1a1a1a,#000000);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg,#111111,#2a2208,#111111);
}

.faq-question .icon {
    color: #ffd700;
    font-size: 22px;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(255,215,0,.35);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #0d0d0d;
}

.faq-answer p {
    margin: 15px 0;
    color: #f3f3f3;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 20px;
}

/* Reviews Slider */
.reviews-section {
    margin: 40px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.review-card {
    background:
        radial-gradient(circle at top left, rgba(255,215,0,.07), transparent 42%),
        linear-gradient(145deg,#000000,#111111 55%,#1a1a1a);
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 5px 15px rgba(0,0,0,.25),
        inset 0 0 14px rgba(255,215,0,.04);
}

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

.review-name {
    font-weight: 700;
    color: #fff4b0;
}

.review-stars {
    color: #ffd700;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255,215,0,.35);
}

.review-text {
    color: #f3f3f3;
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0;
    font-style: italic;
}

.review-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    padding: 5px 12px;
    margin-top: 8px;

    color: #fff4b0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .3px;

    border-radius: 999px;
    border: 1px solid rgba(212,175,55,.75);

    background:
        linear-gradient(180deg,rgba(255,215,0,.18),rgba(140,107,47,.12)),
        linear-gradient(135deg,#101010,#1b1200);

    box-shadow:
        0 0 10px rgba(255,215,0,.35),
        inset 0 1px 0 rgba(255,255,255,.18);

    text-transform: uppercase;
}

.review-date::before {
    content: "👑 VIP";
    color: #ffd700;
    font-weight: 900;
}

.review-date::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 8px #ffd700;
}

/* CTA Buttons */
.cta-section {
    text-align: center;
    margin: 40px 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid;
    min-width: 150px;
}

.btn-login {
    background: linear-gradient(135deg,#000000,#1a1a1a,#000000);
    color: #ffd700;
    border-color: rgba(212,175,55,.55);
}

.btn-login:hover {
    background: linear-gradient(135deg,#111111,#2a2208,#111111);
    border-color: #ffd700;
    box-shadow: 0 0 18px rgba(255,215,0,.22);
}

.btn-register {
    background: linear-gradient(to bottom,#fff4b0 0%,#ffd700 25%,#d4af37 50%,#8c6b2f 75%,#d4af37 100%);
    color: #111111;
    border-color: #ffd700;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.4),
        0 0 15px rgba(255,215,0,.18);
}

.btn-register:hover {
    background: linear-gradient(to bottom,#fff8c7 0%,#ffe55c 25%,#d4af37 55%,#8c6b2f 100%);
    box-shadow: 0 0 22px rgba(255,215,0,.32);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 24px;
    }
}

.feature-moving-bar {
    width: 100%;
    margin: 24px 0 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);

    background: linear-gradient(120deg,#000000 0%,#8c6b2f 30%,#ffd700 50%,#d4af37 70%,#000000 100%);
    background-size: 260% 260%;
    animation: barGradientMove 7s linear infinite;

    border: 1px solid rgba(212,175,55,.65);

    box-shadow:
        0 0 16px rgba(255,215,0,.28),
        inset 0 1px 0 rgba(255,255,255,.12);
}

.feature-moving-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,transparent 0%,rgba(255,244,176,.35) 45%,transparent 70%);
    transform: translateX(-120%);
    animation: barShineMove 4s ease-in-out infinite;
    pointer-events: none;
}

.feature-moving-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(255,215,0,.18),transparent 35%);
    pointer-events: none;
}

.feature-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    color: #ffffff;
    border-right: 1px solid rgba(255,244,176,.35);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;

    background: linear-gradient(145deg,#000000,#1a1a1a,#8c6b2f);

    border: 1px solid rgba(212,175,55,.5);

    box-shadow:
        0 0 12px rgba(255,215,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.feature-title {
    font-size: 14px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 1px 0 rgba(0,0,0,.65), 0 0 8px rgba(255,215,0,.25);
}

.feature-desc {
    font-size: 11px;
    color: #f3f3f3;
    margin-top: 3px;
    line-height: 1.35;
}

@keyframes barGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes barShineMove {
    0% { transform: translateX(-120%); }
    45% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@media(max-width:700px) {
    .feature-moving-bar {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(212,175,55,.3);
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}
