:root {
    --color-bg-dark: #0f1115;
    --color-bg-card: #181a20;
    --color-text: #ffffff;
    --color-text-muted: #a0a5b1;
    --color-gold: #d4af37;
    --color-gold-hover: #f1c40f;
    --color-badge: #1f2229;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text);
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Header Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
}

.logo span {
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.nav a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,17,21,0.9) 0%, rgba(15,17,21,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #d4af37, #f1c40f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge img {
    width: 200px;
    margin-bottom: 40px;
    animation: pulse 2s infinite ease-in-out;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.ranking-section {
    margin-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.gold-line {
    width: 100px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto;
}

/* Grid Layout */
.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--color-bg-card);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Special Highlighting for Rank 1 and 2 */
.card.rank-1 {
    transform: scale(1.05);
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.card.rank-2 {
    border: 1px solid rgba(212, 175, 55, 0.6);
}

.card.rank-1:hover, .card.rank-2:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.rank-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 45px;
    height: 45px;
    background: var(--color-badge);
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    z-index: 10;
}

.card.rank-1 .rank-badge {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.card:hover .thumb {
    border-color: var(--color-gold);
}

.card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.web-link {
    display: block;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.web-link:hover {
    color: var(--color-gold-hover);
    text-decoration: underline;
}

.phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

footer {
    text-align: center;
    padding: 40px;
    background: rgba(15, 17, 21, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

footer p {
    color: var(--color-text-muted);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Info Sections */
.info-section {
    margin-bottom: 80px;
}

.content-box {
    background: var(--color-bg-card);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.content-box p {
    margin-bottom: 20px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Memberships */
.memberships-list ul {
    list-style: none;
    padding: 0;
}

.memberships-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.memberships-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.memberships-list strong {
    color: var(--color-text);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .header { padding: 15px 20px; flex-direction: column; gap: 15px; }
    .nav a { margin: 0 10px; }
    .grid-list { grid-template-columns: 1fr; }
}
