/* Global Styles - Sexy & Trendy Authority */
:root {
    --primary-color: #ff0055;
    /* Hot Pink */
    --primary-glow: 0 0 15px rgba(255, 0, 85, 0.6);
    --secondary-color: #7000df;
    /* Deep Electric Purple */
    --bg-color: #0d0d12;
    /* Almost Black */
    --card-bg: #16161e;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --gold: #ffd700;
    --gold-glow: 0 0 10px rgba(255, 215, 0, 0.5);
    --success: #00ff9d;
    --danger: #ff3333;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Open+Sans:wght@300;400;600&display=swap');

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(112, 0, 223, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 0, 85, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
}

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

/* Header */
.site-header {
    background: rgba(13, 13, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shield {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #ff0055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.logo-text p {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.trust-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero */
.hero-section {
    padding: 80px 0 40px;
    text-align: center;
}

.hero-section h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
    font-weight: 300;
}

/* Table */
.ranking-table {
    margin-top: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: var(--glass-border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.table-header {
    display: grid;
    grid-template-columns: 0.5fr 2.5fr 1fr 1fr 1fr 1.2fr;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row {
    display: grid;
    grid-template-columns: 0.5fr 2.5fr 1fr 1fr 1fr 1.2fr;
    padding: 30px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.table-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.table-row.winner {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    border-left: 4px solid var(--gold);
    position: relative;
}

.rank {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rank .number {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    font-family: var(--font-heading);
    line-height: 1;
}

.winner .rank .number {
    color: var(--gold);
    text-shadow: var(--gold-glow);
}

.badge-winner {
    display: inline-block;
    font-size: 0.65rem;
    background: var(--gold);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--gold-glow);
    white-space: nowrap;
}

.site-info h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.winner .site-info h3 {
    color: var(--gold);
}

.site-info p {
    font-size: 0.9rem;
    color: #888;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating span {
    font-weight: 700;
    color: var(--heading-color);
}

.security span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.verified {
    color: var(--success);
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
}

.warning {
    color: var(--gold);
}

.danger {
    color: var(--danger);
}

.bar-container {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 10px;
    width: 90%;
    margin-bottom: 8px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: var(--primary-color);
    box-shadow: var(--primary-glow);
    border-radius: 10px;
}

.bar.info {
    background: #3498db;
    box-shadow: none;
}

.bar.danger {
    background: var(--danger);
    box-shadow: none;
}

.authenticity span {
    font-size: 0.8rem;
    color: #aaa;
}

.action .btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 5px;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    background: #fff;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 15px 30px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    padding: 8px 15px;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
    background: rgba(255, 51, 51, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
    opacity: 0.5;
    font-size: 0.75rem;
    padding: 8px 15px;
}

.btn-text {
    background: none;
    border: none;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 5px;
}

.btn-text:hover {
    color: #fff;
}

/* Content Grid & Reviews */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.review-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: var(--glass-border);
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.highlight-review {
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.review-header .tag {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.review-card h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 25px;
    color: var(--heading-color);
    font-family: var(--font-heading);
}

.intro {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.review-card h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.review-card ul {
    margin: 20px 0;
    padding-left: 20px;
}

.review-card li {
    margin-bottom: 12px;
    color: #ccc;
}

/* Pros & Cons */
.pros-cons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.pros,
.cons {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
}

.pros h5 {
    color: var(--success);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cons h5 {
    color: var(--danger);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pros ul,
.cons ul {
    padding-left: 15px;
    margin: 0;
}

.pros li,
.cons li {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(13, 13, 18, 1) 0%, rgba(255, 0, 85, 0.1) 100%);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 85, 0.3);
    margin-top: 30px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* Sidebar */
.widget {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: var(--glass-border);
    margin-bottom: 30px;
}

.scam-alert {
    border: 1px solid var(--danger);
    background: rgba(255, 51, 51, 0.05);
}

.scam-alert h4 {
    color: var(--danger);
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.date {
    font-size: 0.75rem;
    color: #666;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}

.recent-activity h4 {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    color: var(--heading-color);
    font-family: var(--font-heading);
}

.review-item {
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
}

.review-item .user {
    font-weight: 700;
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.site-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 8px;
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    vertical-align: middle;
}

.site-tag.cica {
    background: var(--success);
    color: #000;
}

.site-tag.bad {
    background: var(--danger);
    color: #fff;
}

.review-item p {
    margin-top: 8px;
    font-style: italic;
    color: #aaa;
}

/* Footer */
.site-footer {
    background: #050508;
    color: #555;
    padding: 60px 0;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
}

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

    .table-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
        margin-bottom: 20px;
        border-radius: 10px;
        border: var(--glass-border);
    }

    .table-row.winner {
        border-top: 4px solid var(--gold);
        border-left: var(--glass-border);
    }

    .bar-container {
        margin: 0 auto 5px;
    }

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

    .hero-section h2 {
        font-size: 1.8rem;
    }

    .pros-cons {
        flex-direction: column;
    }

    /* Header Fixes for Mobile */
    .header-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }
}