/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #da020e;
    --primary-yellow: #ffc72c;
    --secondary-red: #b71c1c;
    --secondary-yellow: #ffeb3b;
    --accent-orange: #ff6b35;
    --dark-red: #8b0000;
    --light-yellow: #fff9c4;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #333333;
    --gray-light: #f5f5f5;
    --success-green: #4caf50;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo .logo-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    font-family: 'Fredoka One', cursive;
}

.loading-logo h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Fredoka One', cursive;
}

.loading-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--white);
    width: 0%;
    animation: loadingProgress 3s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Ad Screen */
.ad-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.ad-screen.show {
    opacity: 1;
    visibility: visible;
}

.ad-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.ad-header {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sponsor-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.sponsor-badge i {
    color: var(--primary-yellow);
}

.ad-timer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.ad-main {
    padding: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-media {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
    transition: all 0.3s ease;
}

.ad-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.ad-video {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Fallback for old logo system */
.ad-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: 800;
}

.ad-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.ad-description {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.ad-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ad-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ad-footer {
    background: var(--gray-light);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.skip-ad-btn {
    background: transparent;
    border: 1px solid var(--gray-dark);
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skip-ad-btn:hover:not(:disabled) {
    background: var(--gray-dark);
    color: var(--white);
}

.skip-ad-btn:disabled {
    background: var(--gray-light) !important;
    color: var(--gray-dark) !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

/* Pulse animation for enabled skip button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(244, 67, 54, 0.3);
    }
}

/* Ad Types */
.ad-tech .ad-logo {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.ad-finance .ad-logo {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.ad-gaming .ad-logo {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.ad-food .ad-logo {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
}

.ad-travel .ad-logo {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--black);
}

/* Ad Media Hover Effects */
.ad-media:hover {
    transform: scale(1.05);
}

.ad-video:hover {
    box-shadow: var(--shadow-lg);
}

/* Video Controls */
.ad-video::-webkit-media-controls {
    display: none !important;
}

.ad-video {
    pointer-events: none; /* Prevent user interaction with video */
}

/* Ad Animation */
.ad-screen.show .ad-content {
    animation: adSlideIn 0.5s ease-out;
}

@keyframes adSlideIn {
    0% {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Ad Button Overlay */
.ad-button-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    animation: fadeIn 0.5s ease-out;
}

.ad-button-container {
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.ad-button-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    animation: adButtonSlideIn 0.6s ease-out;
}

.ad-button-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.ad-button-content h3 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.ad-button-content p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.5;
}

.money-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-red);
}

.money-icons i {
    animation: moneyFloat 3s ease-in-out infinite;
}

.money-icons i:nth-child(1) { animation-delay: 0s; }
.money-icons i:nth-child(2) { animation-delay: 0.5s; }
.money-icons i:nth-child(3) { animation-delay: 1s; }

@keyframes moneyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

.show-ad-button {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.show-ad-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.show-ad-button:active {
    transform: translateY(0);
}

.ad-button-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.ad-button-info i {
    color: var(--primary-yellow);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes adButtonSlideIn {
    0% {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Fredoka One', cursive;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Fredoka One', cursive;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    animation: float 6s ease-in-out infinite;
}

.coin-1 { top: 20%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 30%; right: 15%; animation-delay: 1s; }
.coin-3 { top: 60%; left: 20%; animation-delay: 2s; }
.coin-4 { top: 70%; right: 25%; animation-delay: 3s; }
.coin-5 { top: 40%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Fredoka One', cursive;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* App Preview */
.app-preview {
    position: relative;
}

.preview-screen {
    background: var(--black);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.screen-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-height: 400px;
}

.app-interface {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wallet-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.wallet-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.wallet-info {
    display: flex;
    flex-direction: column;
}

.wallet-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.wallet-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.earn-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    gap: 1rem;
}

.earn-button {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.earn-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 199, 44, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.timer-display {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-align: center;
}

.earnings-display {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.earning-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--success-green);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--primary-red);
    font-family: 'Fredoka One', cursive;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
    font-family: 'Fredoka One', cursive;
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-yellow), var(--white));
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-yellow));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 45%;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
}

.timeline-phase {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-period {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

/* Economics Section */
.economics {
    padding: 80px 0;
    background: var(--white);
}

.economics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.economics-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-family: 'Fredoka One', cursive;
}

.economics-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.income-sources {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.income-source {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.income-source:hover {
    background: var(--light-yellow);
    transform: translateX(10px);
}

.income-source i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.source-info h4 {
    color: var(--primary-red);
    margin-bottom: 0.25rem;
    font-family: 'Fredoka One', cursive;
}

.source-info p {
    color: var(--gray-dark);
    margin: 0;
    font-size: 0.875rem;
}

.economics-visual {
    display: flex;
    justify-content: center;
}

.revenue-chart {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
}

.chart-title {
    text-align: center;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-family: 'Fredoka One', cursive;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chart-bar {
    position: relative;
}

.bar-fill {
    height: 40px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.chart-bar[data-value="300000000"] .bar-fill {
    width: 30%;
}

.chart-bar[data-value="1000000000"] .bar-fill {
    width: 100%;
}

.bar-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    font-family: 'Fredoka One', cursive;
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-family: 'Fredoka One', cursive;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
}

.form-group input::placeholder {
    color: var(--gray-dark);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo h3 {
    color: var(--white);
    font-family: 'Fredoka One', cursive;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .economics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Enhanced Timer Styles - Discreto y Oculto */
.timer-display {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    margin-top: 1rem;
    display: none; /* Oculto por defecto */
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.timer-display.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.timer-icon {
    background: var(--gray-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.timer-content {
    flex: 1;
}

.timer-label {
    color: var(--gray-dark);
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.timer-countdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.time-unit {
    background: var(--gray-light);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    text-align: center;
    min-width: 35px;
}

.time-number {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    line-height: 1;
}

.time-text {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gray-dark);
    text-transform: uppercase;
    opacity: 0.7;
}

.time-separator {
    color: var(--gray-dark);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.5;
}

/* Boost Active Styles */
.earning-item.boost-active {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    color: var(--white);
    animation: boostPulse 2s infinite;
}

@keyframes boostPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.withdraw-btn {
    background: linear-gradient(135deg, var(--success-green), #45a049);
    color: var(--white);
}

.withdraw-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.deposit-btn {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: var(--white);
}

.deposit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shop-btn {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--black);
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.referral-btn {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: var(--white);
}

.referral-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin: 0;
    color: var(--primary-red);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--primary-red);
}

.modal-body {
    padding: 1.5rem;
}

/* Auth Form Styles */
.auth-form {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(218, 2, 14, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.forgot-password {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-light);
}

.auth-divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Shop Modal Styles */
.shop-modal {
    max-width: 800px;
}

.shop-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.shop-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.item-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.boost-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.boost-icon.premium {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
}

.boost-icon.legendary {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.protection-icon {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.investment-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.investment-icon.premium {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--black);
}

.investment-icon.legendary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.item-info h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.item-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.item-roi {
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Withdraw/Deposit Form Styles */
.withdraw-form, .deposit-form {
    margin-bottom: 1rem;
}

.balance-info {
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
    margin-top: 0.5rem;
}

.file-info {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}

.withdraw-info, .deposit-info {
    background: var(--light-yellow);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.withdraw-info i, .deposit-info i {
    color: var(--primary-red);
}

.terms-link {
    color: var(--primary-red);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn-full {
    width: 100%;
}

/* Additional Responsive Styles for New Elements */
@media (max-width: 768px) {
    .timer-display.show {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
    }
    
    .timer-countdown {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 40px;
        padding: 0.3rem 0.4rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .shop-modal {
        max-width: 95%;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--success-green);
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: var(--success-green);
}

.notification-error {
    border-left-color: var(--primary-red);
}

.notification-info {
    border-left-color: #2196f3;
}

.notification i {
    font-size: 1.2rem;
    color: var(--success-green);
}

.notification-error i {
    color: var(--primary-red);
}

.notification-info i {
    color: #2196f3;
}

.notification span {
    font-weight: 500;
    color: var(--gray-dark);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button Hover Effects */
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Form Validation Styles */
.form-group input:invalid {
    border-color: var(--primary-red);
}

.form-group input:valid {
    border-color: var(--success-green);
}

/* Loading States */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced Modal Animations */
.modal-content {
    transform: scale(0.9) translateY(-50px);
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

/* Enhanced Shop Item Hover */
.shop-item:hover .item-icon {
    transform: scale(1.1) rotate(5deg);
}

.shop-item:hover .item-price {
    color: var(--accent-orange);
}

/* Enhanced Timer Pulse - Discreto */
.timer-countdown .time-unit {
    transition: all 0.3s ease;
}

.timer-countdown .time-unit:hover {
    transform: scale(1.02);
    background: var(--primary-yellow);
    color: var(--black);
}

/* Enhanced Boost Animation */
.earning-item.boost-active:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Enhanced Action Button Animations */
.action-btn {
    position: relative;
    overflow: hidden;
}

.action-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: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

/* Enhanced Wallet Display */
.wallet-display {
    transition: all 0.3s ease;
}

.wallet-display:hover {
    transform: scale(1.02);
}

/* Enhanced Earn Button */
.earn-button {
    position: relative;
    overflow: hidden;
}

.earn-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.earn-button:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Floating Coins */
.coin {
    transition: all 0.3s ease;
}

.coin:hover {
    transform: scale(1.2) rotate(360deg);
}

/* Enhanced Stats Animation */
.stat-number {
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-red);
}

/* Enhanced Feature Cards */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Timeline Items */
.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
}

/* Enhanced Contact Form */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(218, 2, 14, 0.1);
}

/* Enhanced Footer */
.footer-social .social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Enhanced Header */
.header-cta button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* User Menu Styles */
.user-menu {
    position: relative;
}

.user-icon-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.user-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.user-menu.active .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-light);
}

.user-avatar-small {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.user-info-small {
    display: flex;
    flex-direction: column;
}

.user-name-small {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.user-status {
    font-size: 0.8rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-light);
    margin: 0.5rem 0;
}

.dropdown-item {
    width: 100%;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-dark);
    font-size: 0.9rem;
    text-align: left;
}

.dropdown-item:hover {
    background: var(--light-yellow);
    color: var(--primary-red);
}

.dropdown-item.logout-item {
    color: var(--primary-red);
}

.dropdown-item.logout-item:hover {
    background: rgba(220, 38, 38, 0.1);
}

/* Enhanced Hero Actions */
.hero-actions button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Roadmap */
.roadmap-timeline .timeline-item:hover .timeline-content {
    background: var(--light-yellow);
    border-radius: var(--radius-md);
    padding: 1rem;
}

/* Enhanced Economics */
.economics-content:hover .revenue-chart {
    transform: scale(1.02);
}

/* Enhanced Contact */
.contact-item:hover {
    transform: translateX(10px);
}

.contact-item:hover i {
    color: var(--primary-red);
    transform: scale(1.2);
}

/* Benefits Section - Sistema de Rachas y Niveles */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.benefits .section-title {
    color: var(--white);
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.5rem;
}

.benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.benefits-visual {
    position: relative;
}

.progression-chart {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-header h3 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.level-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.current-level,
.next-level {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.level-progress {
    flex: 1;
    height: 8px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: var(--radius-md);
    transition: width 1s ease;
}

.progression-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
}

.step-card.active {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(218, 2, 14, 0.05), rgba(255, 199, 44, 0.05));
}

.step-card.upgrade {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(255, 199, 44, 0.1), rgba(255, 107, 53, 0.1));
    transform: scale(1.05);
    position: relative;
}

.step-card.upgrade::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-yellow);
}

.step-card.future {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(255, 199, 44, 0.1));
    opacity: 0.9;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
}

.step-card.upgrade .step-number {
    background: var(--primary-yellow);
    color: var(--gray-dark);
}

.step-card.future .step-number {
    background: var(--success-green);
}

.upgrade-number {
    background: var(--primary-yellow);
    color: var(--gray-dark);
    font-size: 1.25rem;
}

.step-content h4 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-amount {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.upgrade-amount {
    color: var(--primary-yellow);
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.step-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.upgrade-badge {
    background: var(--primary-yellow);
    color: var(--gray-dark);
}

.future-badge {
    background: var(--success-green);
}

.step-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.step-arrow i {
    font-size: 1.5rem;
    color: var(--white);
    background: var(--primary-red);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.arrow-text {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

.progression-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-light);
    flex: 1;
    max-width: 250px;
}

.summary-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(218, 2, 14, 0.05), rgba(255, 199, 44, 0.05));
    transform: scale(1.05);
    position: relative;
}

.summary-card.featured::after {
    content: '🎯 RECOMENDADO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.featured-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
}

.summary-content h4 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.summary-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.featured-amount {
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-content p {
    color: var(--gray-dark);
    font-size: 0.875rem;
}

.summary-vs {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.benefits-text {
    color: var(--white);
}

.benefits-intro {
    margin-bottom: 2rem;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-highlight i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.benefit-highlight h3 {
    color: var(--white);
    font-family: 'Fredoka One', cursive;
}

.benefits-intro p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--gray-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.benefits-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cta-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .progression-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step-arrow {
        flex-direction: row;
        gap: 1rem;
    }

    .step-arrow i {
        transform: rotate(90deg);
    }

    .progression-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .summary-card {
        max-width: none;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }
}

/* Animations for Benefits */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(218, 2, 14, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(218, 2, 14, 0.6);
    }
}

.step-card.upgrade {
    animation: pulse-glow 2s ease-in-out infinite;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Referral System Styles */
.referral-modal {
    max-width: 900px;
}

.referral-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
}

.referral-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-yellow), #fff8e1);
    border-radius: var(--radius-md);
}

.referral-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.referral-info h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.referral-code-section,
.referral-link-section {
    margin-bottom: 1.5rem;
}

.code-display,
.link-display {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.code-display input,
.link-display input {
    flex: 1;
    background: var(--gray-light);
    border: 1px solid var(--gray-light);
    color: var(--gray-dark);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.share-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.telegram-btn {
    background: #0088cc;
    color: var(--white);
}

.facebook-btn {
    background: #1877f2;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.reward-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reward-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.reward-item:nth-child(1) .reward-icon {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.reward-item:nth-child(2) .reward-icon {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
}

.reward-item:nth-child(3) .reward-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.reward-item:nth-child(4) .reward-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--black);
}

.reward-info h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.reward-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reward-status {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reward-status.completed {
    background: var(--success-green);
    color: var(--white);
}

.reward-status.available {
    background: var(--primary-yellow);
    color: var(--black);
}

.reward-status.locked {
    background: var(--gray-light);
    color: var(--gray-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: var(--white);
}

.stat-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

/* Referral List */
.referral-list {
    margin-top: 2rem;
}

.referral-list h4 {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.referral-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.referral-item:hover {
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.referral-avatar {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
}

.referral-details {
    flex: 1;
}

.referral-details h5 {
    margin-bottom: 0.25rem;
    color: var(--gray-dark);
}

.referral-details p {
    font-size: 0.8rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.referral-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.referral-status.active {
    background: var(--success-green);
    color: var(--white);
}

.referral-status.pending {
    background: var(--primary-yellow);
    color: var(--black);
}

/* Responsive Referral */
@media (max-width: 768px) {
    .referral-modal {
        max-width: 95%;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .referral-item {
        flex-direction: column;
        text-align: center;
    }
    
    .code-display,
    .link-display {
        flex-direction: column;
    }
}

/* Dashboard Styles */
.dashboard-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.dashboard-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: var(--gray-dark);
}

.user-level {
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 500;
}

.logout-btn {
    background: var(--gray-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.dashboard-main {
    padding: 2rem 0;
    min-height: calc(100vh - 80px);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card.main-balance {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
}

.stat-card.main-balance .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.stat-content h3 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.balance-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.balance-change.positive {
    color: var(--success-green);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.dashboard-left,
.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--gray-dark);
    font-size: 1.5rem;
}

.earn-section,
.boosts-section,
.quick-actions,
.level-section,
.activity-section,
.achievements-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.earn-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.earn-area {
    text-align: center;
}

.earn-button-large {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border: none;
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1rem;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.earn-button-large:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Hide earn button when used */
.earn-button-large[style*="display: none"] {
    display: none !important;
}

.earn-icon {
    font-size: 2rem;
}

.earn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.earn-label {
    font-size: 1.2rem;
    font-weight: 800;
}

.earn-amount {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.earn-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.earn-bonus,
.earn-boost {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.earn-bonus i {
    color: var(--primary-yellow);
}

.earn-boost i {
    color: var(--accent-orange);
}

.boosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.boost-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.boost-card.active {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.boost-card.expired {
    border-color: var(--gray-light);
    opacity: 0.6;
}

.boost-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.boost-icon.protection {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.boost-info {
    flex: 1;
}

.boost-info h4 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.boost-info p {
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-bottom: 0.25rem;
}

.boost-timer {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-red);
}

.boost-status {
    font-size: 1.2rem;
}

.boost-status.active {
    color: var(--success-green);
}

.boost-status.expired {
    color: var(--gray-dark);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.action-card:nth-child(1) .action-icon {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.action-card:nth-child(2) .action-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.action-card:nth-child(3) .action-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--black);
}

.action-card:nth-child(4) .action-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.action-card span {
    font-weight: 600;
    color: var(--gray-dark);
}

.level-info {
    text-align: center;
}

.current-level {
    margin-bottom: 1.5rem;
}

.level-badge {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.level-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.level-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    height: 10px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    height: 100%;
    border-radius: var(--radius-lg);
    transition: width 0.5s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.next-level {
    text-align: left;
}

.next-level-info h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.next-level-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.level-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.benefit i {
    color: var(--success-green);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: var(--light-yellow);
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
}

.activity-icon.earn {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.activity-icon.boost {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
}

.activity-icon.referral {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.activity-icon.withdraw {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.activity-icon.level {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--black);
}

.activity-content {
    flex: 1;
}

.activity-content h4 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.activity-content p {
    font-size: 0.8rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.activity-amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-amount.positive {
    color: var(--success-green);
}

.activity-amount.negative {
    color: var(--primary-red);
}

.activity-amount.neutral {
    color: var(--gray-dark);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.achievement-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card.completed {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.achievement-card.locked {
    opacity: 0.6;
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.achievement-card.completed .achievement-icon {
    background: linear-gradient(135deg, var(--success-green), #45a049);
}

.achievement-card.locked .achievement-icon {
    background: var(--gray-light);
    color: var(--gray-dark);
}

.achievement-info h4 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.achievement-info p {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-header .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-info {
        order: -1;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .boosts-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .earn-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .earn-button-large {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive User Menu */
@media (max-width: 768px) {
    .user-dropdown {
        right: -50px;
        min-width: 200px;
    }
    
    .dropdown-header {
        padding: 0.75rem;
    }

/* Ultimate Step Card Styles */
.step-card.ultimate {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.ultimate-number {
    background: #ffd700;
    color: #333;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ultimate-number i {
    color: #333;
    font-size: 1.2rem;
}

.ultimate-amount {
    color: #ffd700;
    font-weight: 900;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ultimate-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    font-weight: 800;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.testimonials .section-title {
    color: var(--white);
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.5rem;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.testimonial-card.featured::before {
    content: '⭐ TOP TESTIMONIAL ⭐';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #ffd700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    border: 3px solid var(--white);
}

.testimonial-avatar.featured-avatar {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--gray-dark);
    font-size: 1.125rem;
    font-weight: 700;
}

.testimonial-level {
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.testimonial-earning {
    margin-left: auto;
    text-align: right;
}

.earning-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.earning-label {
    font-size: 0.75rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.testimonial-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.125rem;
}

/* Leaderboard Section */
.leaderboard {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.leaderboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 100,35 69,57 82,100 50,75 18,100 31,57 0,35 39,35" fill="rgba(255,215,0,0.05)"/></svg>');
    opacity: 0.1;
}

.leaderboard .section-title {
    color: var(--white);
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.5rem;
}

.leaderboard .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.leaderboard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.leaderboard-list {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
}

.leaderboard-item.top-three {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
}

.leaderboard-item.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.2) 100%);
    border-left: 4px solid #ffd700;
}

.leaderboard-item.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(169, 169, 169, 0.2) 100%);
    border-left: 4px solid #c0c0c0;
}

.leaderboard-item.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(184, 115, 51, 0.2) 100%);
    border-left: 4px solid #cd7f32;
}

.leaderboard-rank {
    width: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
}

.leaderboard-rank i {
    font-size: 1.25rem;
    color: var(--primary-red);
}

.leaderboard-info h4 {
    margin: 0;
    color: var(--gray-dark);
    font-weight: 700;
}

.leaderboard-level {
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
}

.leaderboard-earning {
    margin-left: auto;
    text-align: right;
}

.leaderboard-earning .earning-amount {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.leaderboard-earning .earning-period {
    font-size: 0.75rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.leaderboard-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.leaderboard-cta .cta-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.leaderboard-cta .cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Responsive Design for Testimonials and Leaderboard */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .leaderboard-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leaderboard-list {
        padding: 1.5rem;
    }

    .leaderboard-item {
        padding: 0.75rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .testimonial-earning {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
