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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0F172A;
    color: #E2E8F0;
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: #FBBF24;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FCD34D;
}

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

/* Header */
header {
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #334155;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.header-nav a {
    color: #CBD5E1;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 6px 0;
    position: relative;
}

.header-nav a:hover,
.header-nav a.active {
    color: #FBBF24;
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #FBBF24;
    border-radius: 2px;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #475569;
    color: #E2E8F0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-login {
    background: transparent;
    color: #E2E8F0;
    border: 1px solid #475569;
}

.btn-login:hover {
    background: #1E293B;
    border-color: #64748B;
}

.btn-primary {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #0F172A;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-purple {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #FFFFFF;
}

.btn-purple:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0F172A 0%, transparent 50%, transparent 80%, #0F172A 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-top {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.hero-rating {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    flex-shrink: 0;
}

.rating-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
}

.rating-of {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.hero-intro {
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-intro p {
    color: #CBD5E1;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 700;
}

.hero-disclaimer {
    color: #64748B;
    font-size: 13px;
}

.hero-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.promo-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.promo-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
    border-bottom: 1px solid #334155;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 15px 0 10px;
}

.page-hero .lede {
    color: #CBD5E1;
    font-size: 17px;
    max-width: 800px;
    margin-bottom: 0;
}

/* Author Section */
.author-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #1E293B;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #334155;
    border-left: 4px solid #7C3AED;
}

.author-photo {
    flex-shrink: 0;
}

.author-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7C3AED;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 5px 0;
}

.author-title {
    display: block;
    color: #FBBF24;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio {
    color: #CBD5E1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-photo img {
        width: 100px;
        height: 100px;
    }
}

/* Main Content */
main {
    padding: 40px 0;
}

.content-section {
    margin-bottom: 50px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    padding-bottom: 15px;
    padding-left: 20px;
    border-bottom: 2px solid #7C3AED;
    border-left: 4px solid #7C3AED;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

h2 i {
    color: #FBBF24;
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F8FAFC;
    margin: 30px 0 15px;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E2E8F0;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    color: #CBD5E1;
}

strong {
    color: #F8FAFC;
}

/* Section Image */
.section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: block;
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.01);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    border: 1px solid #334155;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #1E293B;
}

th {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #FFFFFF;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
}

td {
    padding: 14px 20px;
    border-bottom: 1px solid #334155;
    color: #E2E8F0;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: #334155;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

tbody tr {
    transition: all 0.3s ease;
}

/* Lists */
ul, ol {
    margin: 15px 0 15px 25px;
    color: #CBD5E1;
}

li {
    margin-bottom: 10px;
    padding-left: 5px;
}

ul li::marker {
    color: #7C3AED;
}

/* Pros Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.pros-box, .cons-box {
    background: #1E293B;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #334155;
}

.pros-box {
    border-top: 3px solid #22C55E;
}

.cons-box {
    border-top: 3px solid #EF4444;
}

.pros-box h3 {
    color: #22C55E;
    margin-top: 0;
}

.cons-box h3 {
    color: #EF4444;
    margin-top: 0;
}

.pros-box ul, .cons-box ul {
    list-style: none;
    margin-left: 0;
}

.pros-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pros-box li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #22C55E;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cons-box li::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #EF4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ */
.faq-item {
    background: #1E293B;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #334155;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: #FBBF24;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #334155;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #7C3AED;
}

.faq-item.active .faq-question::after {
    content: "\2212";
}

.faq-answer {
    padding: 0 25px 20px;
    color: #CBD5E1;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    margin: 35px 0;
    border: 1px solid #4C1D95;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
    }
    50% {
        box-shadow: 0 6px 30px rgba(124, 58, 237, 0.4);
    }
}

.cta-box p {
    color: #A5B4FC;
    font-size: 13px;
    margin-top: 15px;
}

/* Info Box */
.info-box {
    background: #1E293B;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
    border-left: 4px solid #7C3AED;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 18px 0 0;
}

.breadcrumbs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #64748B;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.breadcrumbs-list a {
    color: #94A3B8;
}

.breadcrumbs-list a:hover {
    color: #FBBF24;
}

.breadcrumbs-list span[aria-current="page"] {
    color: #CBD5E1;
}

.breadcrumbs-sep {
    color: #334155;
}

/* Update Badge */
.update-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    color: #C4B5FD;
    border: 1px solid #4C1D95;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.update-badge time {
    color: #E9D5FF;
    font-weight: 600;
}

/* Authority Grid */
.authority-section {
    border-top: 1px solid #334155;
    padding: 30px 0 20px;
    margin-top: 30px;
}

.authority-section h3 {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.authority-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.authority-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #1E293B;
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.authority-logo:hover {
    border-color: #7C3AED;
    color: #FBBF24;
    transform: translateY(-2px);
}

.authority-logo img {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    background: #0F172A;
    padding: 40px 0 30px;
    border-top: 1px solid #334155;
    margin-top: 50px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.footer-nav a {
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #FBBF24;
}

.footer-content {
    text-align: center;
    color: #64748B;
    font-size: 14px;
}

.footer-content p {
    margin-bottom: 10px;
    color: #64748B;
}

.footer-content em {
    font-style: italic;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 15px auto 0;
    font-size: 13px;
    line-height: 1.6;
}

.footer-disclaimer time {
    color: #CBD5E1;
    font-weight: 600;
}

/* Reviews Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.review-card {
    background: #1E293B;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid #334155;
    border-left: 3px solid #FBBF24;
}

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

.review-card-name {
    color: #F8FAFC;
    font-weight: 700;
    font-size: 15px;
}

.review-card-rating {
    color: #FBBF24;
    font-weight: 700;
    font-size: 14px;
}

.review-card-text {
    color: #CBD5E1;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1E293B;
        border-top: 1px solid #334155;
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        justify-content: flex-start;
        z-index: 999;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.15;
    }

    .hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .rating-num {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .hero-promos {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-login {
        display: none;
    }
}
