/* main.css */
:root {
    --primary-color: #2c6ed5;
    --secondary-color: #ff7e1d;
    --accent-color: #e5326b;
    --gold-color: #f5b945;

    --dark-bg: #1a1a2e;
    --light-bg: #f5f5f5;

    --text-dark: #111111;
    --text-light: #ffffff;
    --text-muted: #8a8f94;

    --gradient-primary: linear-gradient(135deg, #2c6ed5 0%, #1ecbe1 100%);
    --gradient-secondary: linear-gradient(135deg, #ff7e1d 0%, #ffb302 100%);
    --gradient-gold: linear-gradient(135deg, #f5b945 0%, #f8d86a 100%);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.14);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.25);

    --border-radius: 12px;
    --border-radius-lg: 20px;

    --transition: all 0.3s ease-in-out;
}

/* Modern Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* Disclaimer Bar - Modern */
.disclaimer-bar {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.disclaimer-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modern Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

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

.logo-img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.9;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Modern Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-signup-submit {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold-color);
}

.btn-login:hover {
    background: var(--gold-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%),
                url('../assets/images/backgrounds/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Page Hero - Smaller version for inner pages */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%),
                url('../assets/images/backgrounds/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-hero-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Modern Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    font-weight: 900;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.6;
}

/* About Section - Modern */
.about {
    background: var(--dark-bg);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
    opacity: 0.9;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Features Section - Modern Cards */
.features {
    background: var(--light-bg);
    padding: 100px 0;
}

.features h2 {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 60px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Games Section - Modern Grid */
.games {
    background: var(--light-bg);
    padding: 100px 0;
    text-align: center;
}

.games-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.games-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    background: white;
    height: 240px;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.7;
}

.game-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

/* Game Detail Card - For games page */
.game-detail-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.game-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-detail-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.game-detail-content {
    padding: 24px;
}

.game-detail-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.game-detail-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.game-detail-players {
    font-size: 14px;
    color: var(--text-muted);
}

/* Leaderboard Section - Modern */
.leaderboard {
    background: var(--dark-bg);
    padding: 100px 0;
    color: var(--text-light);
}

.leaderboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.leaderboard-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leaderboard-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
    opacity: 0.9;
}

.leaderboard-disclaimer {
    font-style: italic;
    opacity: 0.7;
}

.leaderboard-rankings {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.leaderboard-rankings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ranking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

.ranking-item:hover::before {
    left: 100%;
}

.ranking-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
}

.ranking-item:last-child {
    margin-bottom: 0;
}

.player-name {
    font-size: 16px;
}

.player-score {
    font-size: 20px;
    color: var(--gold-color);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    font-weight: 900;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    background: white;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 110, 213, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Info */
.contact-info {
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: var(--text-light);
}

.contact-info-title {
    font-size: 28px;
    margin-bottom: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-method-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-color);
}

.contact-method-details {
    flex: 1;
}

.contact-method-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method-value {
    font-size: 14px;
    opacity: 0.8;
}

.contact-method-value a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method-value a:hover {
    color: var(--gold-color);
}

/* Login/Signup Forms */
.signup-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 0;
}

.auth-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-title {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

.auth-form .form-group {
    margin-bottom: 24px;
}

.auth-form .form-submit {
    margin-top: 16px;
}

.auth-form .form-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-form .form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-form .form-footer a:hover {
    color: var(--secondary-color);
}

/* Privacy/Terms Content */
.legal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.legal-title {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Modern Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-logo-img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.footer-badges {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold-color);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Modern Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .about-content,
    .leaderboard-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }
    
    .legal-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero {
        height: 80vh;
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-nav {
        justify-content: center;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container,
    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .feature {
        padding: 32px 24px;
    }
    
    .leaderboard-rankings {
        padding: 24px;
    }
    
    .ranking-item {
        padding: 16px 20px;
    }
    
    .auth-form {
        padding: 24px;
    }
    
    .legal-content {
        padding: 24px;
    }
}