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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --background-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* Page Loader Animation */
@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Telegram Channels 3D Section */
.telegram-channels-3d {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.telegram-channels-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: telegarmSweep 8s linear infinite;
}

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

.telegram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.telegram-card-3d {
    perspective: 1000px;
    height: 320px;
}

.telegram-card-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    position: relative;
    overflow: hidden;
}

.telegram-card-3d:hover .telegram-card-inner {
    transform: rotateY(10deg) rotateX(-10deg) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.telegram-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: telegramPulse 3s ease-in-out infinite;
}

@keyframes telegramPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.telegram-icon-3d {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    animation: telegramFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.telegram-icon-3d.chat {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

@keyframes telegramFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.telegram-icon-3d i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.telegram-card-inner h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.telegram-card-inner p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.telegram-btn-3d {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.telegram-btn-3d.chat {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.telegram-btn-3d::before {
    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.5s, height 0.5s;
}

.telegram-btn-3d:hover::before {
    width: 300px;
    height: 300px;
}

.telegram-btn-3d:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.telegram-btn-3d.chat:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Mobile Responsive for Telegram Section */
@media (max-width: 768px) {
    .telegram-channels-3d {
        padding: 40px 0;
    }
    
    .telegram-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .telegram-card-3d {
        height: 280px;
    }
    
    .telegram-icon-3d {
        width: 70px;
        height: 70px;
    }
    
    .telegram-icon-3d i {
        font-size: 2rem;
    }
    
    .telegram-card-inner h3 {
        font-size: 1.3rem;
    }
    
    .telegram-card-inner p {
        font-size: 0.9rem;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(238, 41, 81, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 3D Telegram Links */
.telegram-links-3d {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.telegram-link-3d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--surface-color);
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
}

.telegram-link-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 165, 236, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.telegram-link-3d:hover {
    transform: translateY(-5px) rotateX(-10deg) rotateY(10deg);
    border-color: #27a5ec;
    box-shadow: 0 20px 40px rgba(39, 165, 236, 0.3);
}

.telegram-link-3d:hover::before {
    opacity: 1;
}

.telegram-link-3d.duyuru {
    animation: float-left 3s ease-in-out infinite;
}

.telegram-link-3d.chat {
    animation: float-right 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float-left {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-10px) translateY(-5px) rotate(-2deg); }
    75% { transform: translateX(10px) translateY(-3px) rotate(2deg); }
}

@keyframes float-right {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(10px) translateY(-5px) rotate(2deg); }
    75% { transform: translateX(-10px) translateY(-3px) rotate(-2deg); }
}

.tg-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #27a5ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 165, 236, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(39, 165, 236, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 165, 236, 0); }
}

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

.tg-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.tg-username {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tg-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-cta {
    margin-top: 2rem;
}

.btn-glow {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    overflow: hidden;
}

.btn-glow::before {
    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;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 41, 81, 0.4);
}

/* Floating Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-chip {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float-up 20s infinite linear;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.chip-1 { left: 10%; animation-delay: 0s; }
.chip-2 { left: 30%; animation-delay: 4s; }
.chip-3 { left: 50%; animation-delay: 8s; }
.chip-4 { left: 70%; animation-delay: 12s; }
.chip-5 { left: 90%; animation-delay: 16s; }

/* Japanese-Style Sakura Effects */
.sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sakura-petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #ff69b4, #ffb6c1, #ffc0cb);
    border-radius: 50% 0 50% 0;
    opacity: 0.7;
    animation: sakuraFall 15s infinite linear;
}

@keyframes sakuraFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.petal-1 { left: 5%; animation-delay: 0s; }
.petal-2 { left: 15%; animation-delay: 2s; }
.petal-3 { left: 25%; animation-delay: 4s; }
.petal-4 { left: 35%; animation-delay: 1s; }
.petal-5 { left: 45%; animation-delay: 6s; }
.petal-6 { left: 55%; animation-delay: 3s; }
.petal-7 { left: 65%; animation-delay: 8s; }
.petal-8 { left: 75%; animation-delay: 5s; }
.petal-9 { left: 85%; animation-delay: 7s; }
.petal-10 { left: 95%; animation-delay: 9s; }

/* Neon Glow Effects */
.neon-glow {
    position: relative;
}

.neon-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Japanese Wave Pattern */
.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'%3E%3Cpath d='M0,60 C150,100 350,0 500,60 C650,100 850,0 1000,60 L1000,100 L0,100 Z' fill='%23ff6b35' opacity='0.1'/%3E%3C/svg%3E") repeat-x;
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
}

/* Energy Orbs */
.energy-orb {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #00ffff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    animation: energyFloat 12s infinite ease-in-out;
}

@keyframes energyFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 1;
        transform: translate(200px, -100px) scale(1.5);
    }
    50% {
        transform: translate(400px, -50px) scale(1);
    }
    75% {
        transform: translate(600px, -150px) scale(0.8);
    }
}

.orb-1 { top: 80%; left: 10%; animation-delay: 0s; }
.orb-2 { top: 60%; left: 20%; animation-delay: 3s; }
.orb-3 { top: 70%; left: 30%; animation-delay: 6s; }
.orb-4 { top: 90%; left: 40%; animation-delay: 9s; }

/* 3D Logo Styles */
.logo-3d {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.logo-train {
    font-size: 2rem;
    animation: trainMove 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.logo-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffed4e, #ff6b35);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
    transform: rotateX(10deg) rotateY(-5deg);
}

.logo-sparkles {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

@keyframes trainMove {
    0%, 100% { 
        transform: translateX(0) rotate(0deg); 
    }
    25% { 
        transform: translateX(10px) rotate(2deg); 
    }
    75% { 
        transform: translateX(-5px) rotate(-1deg); 
    }
}

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

@keyframes textGlow {
    0% { 
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)) 
                drop-shadow(0 0 30px rgba(247, 147, 30, 0.6));
    }
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

/* Bonus Codes Section */
.bonus-codes-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    margin: 2rem 0;
}

.bonus-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.bonus-refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.bonus-refresh-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.bonus-refresh-btn i {
    transition: transform 0.3s;
}

.bonus-refresh-btn:active i {
    transform: rotate(360deg);
}

.last-updated {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.bonus-codes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.bonus-code-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bonus-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.bonus-code-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(238, 41, 81, 0.2);
}

.bonus-code-card:hover::before {
    transform: translateX(0);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bonus-site-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--background-color);
}

.bonus-site-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-site-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.bonus-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bonus-content {
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bonus-type {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bonus-code-box {
    background: var(--background-color);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.code-value {
    flex: 1;
    font-family: monospace;
    font-weight: 600;
    color: var(--primary-color);
}

.copy-code {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-code:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.bonus-claim-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.bonus-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 41, 81, 0.3);
}

/* Giveaway Cards */
.giveaway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.giveaway-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.giveaway-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(238, 41, 81, 0.2);
}

.giveaway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.giveaway-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

.giveaway-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.giveaway-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.giveaway-card:hover .giveaway-image img {
    transform: scale(1.05);
}

.giveaway-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(238, 41, 81, 0.8), rgba(247, 147, 30, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.giveaway-card:hover .giveaway-overlay {
    opacity: 1;
}

.giveaway-prize-icon {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

.giveaway-content {
    padding: 1.5rem;
}

.giveaway-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.giveaway-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.giveaway-prize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(238, 41, 81, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(238, 41, 81, 0.2);
}

.prize-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.prize-type {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.giveaway-progress {
    margin-bottom: 1rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.participants-count {
    color: var(--text-primary);
    font-weight: 600;
}

.participation-rate {
    color: var(--text-secondary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--background-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.giveaway-sponsor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--background-color);
    border-radius: 8px;
}

.sponsor-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.sponsor-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.giveaway-actions {
    display: flex;
    gap: 1rem;
}

.btn-participate {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-participate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 41, 81, 0.4);
}

.btn-details {
    padding: 0.75rem 1rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-details:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.giveaway-timer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.giveaway-timer.critical {
    background: rgba(239, 68, 68, 0.9);
    animation: urgentPulse 1s infinite;
}

.giveaway-timer.urgent {
    background: rgba(245, 158, 11, 0.9);
}

.giveaway-timer.warning {
    background: rgba(59, 130, 246, 0.9);
}

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

/* Spectacular Category Filter Buttons */
.category-filter {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
}

.category-btn {
    position: relative;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    color: white;
    background: var(--surface-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Tümü - Neon Box Effect */
.category-btn[data-category="all"] {
    border: 2px solid #00ffff;
    background: transparent;
    color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.category-btn[data-category="all"]:hover {
    background: #00ffff;
    color: #111;
    box-shadow: 0 0 30px #00ffff, 0 0 50px #00ffff;
    transform: translateY(-5px);
}
.category-btn[data-category="all"].active {
    background: #00ffff;
    color: #111;
    box-shadow: 0 0 25px #00ffff;
}

/* Nakit - Shimmer Effect */
.category-btn[data-category="cash_prize"] {
    background: #f39c12;
    position: relative;
}
.category-btn[data-category="cash_prize"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s;
}
.category-btn[data-category="cash_prize"]:hover::after {
    left: 130%;
}
.category-btn[data-category="cash_prize"]:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}
.category-btn[data-category="cash_prize"].active {
    background: #e67e22;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.6);
}

/* Bonus - Fill Up Effect */
.category-btn[data-category="bonus_prize"] {
    border: 2px solid #e74c3c;
    background: transparent;
    color: #e74c3c;
    position: relative;
}
.category-btn[data-category="bonus_prize"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #e74c3c;
    z-index: -1;
    transition: width 0.5s ease;
}
.category-btn[data-category="bonus_prize"]:hover {
    color: white;
    transform: translateY(-3px);
}
.category-btn[data-category="bonus_prize"]:hover::before {
    width: 100%;
}
.category-btn[data-category="bonus_prize"].active {
    background: #e74c3c;
    color: white;
}

/* Free Spin - Conic Pulse Effect */
.category-btn[data-category="freespin_prize"] {
    background: #6c5ce7;
    background-size: 200% 200%;
    background-image: conic-gradient(from 0deg, #6c5ce7, #00cec9, #a29bfe, #6c5ce7);
}
.category-btn[data-category="freespin_prize"]:hover {
    animation: swirlReveal 2s infinite linear;
    transform: translateY(-3px) scale(1.05);
}
.category-btn[data-category="freespin_prize"].active {
    animation: swirlReveal 3s infinite linear;
    box-shadow: 0 0 25px rgba(108, 92, 231, 0.6);
}

/* Ürünler - Oval Zoom Effect */
.category-btn[data-category="item_prize"] {
    background: #9b59b6;
    position: relative;
    overflow: hidden;
}
.category-btn[data-category="item_prize"]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.5s ease-out;
    z-index: 0;
}
.category-btn[data-category="item_prize"]:hover::before {
    transform: translate(-50%, -50%) scale(1);
}
.category-btn[data-category="item_prize"]:hover {
    background: #8e44ad;
    transform: translateY(-3px);
}
.category-btn[data-category="item_prize"].active {
    background: #8e44ad;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.6);
}

/* VIP - Starshine Effect */
.category-btn[data-category="membership_prize"] {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    position: relative;
    overflow: hidden;
}
.category-btn[data-category="membership_prize"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    opacity: 0;
    scale: 1.2;
    transition: all 0.3s;
}
.category-btn[data-category="membership_prize"]:hover::before {
    animation: shineRotate 3s linear infinite;
    opacity: 0.4;
}
.category-btn[data-category="membership_prize"]:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.4);
}
.category-btn[data-category="membership_prize"].active {
    box-shadow: 0 0 25px rgba(253, 121, 168, 0.6);
}

/* Günlük - Pulse Effect */
.category-btn[data-category="daily_prize"] {
    background: #27ae60;
}
.category-btn[data-category="daily_prize"]:hover {
    animation: categoryPulse 1.5s infinite;
    transform: translateY(-3px);
}
.category-btn[data-category="daily_prize"].active {
    animation: categoryPulse 2s infinite;
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.6);
}

/* Category Button Animations */
@keyframes swirlReveal {
    0% { background-position: -10% 50%; }
    50% { background-position: 110% 50%; }
    100% { background-position: -20% 50%; }
}

@keyframes shineRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes categoryPulse {
    0% { 
        transform: translateY(-3px) scale(1); 
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4), 0 0 0 0 rgba(39, 174, 96, 0.7); 
    }
    70% { 
        transform: translateY(-3px) scale(1.05); 
        box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4), 0 0 0 15px rgba(39, 174, 96, 0); 
    }
    100% { 
        transform: translateY(-3px) scale(1); 
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4), 0 0 0 0 rgba(39, 174, 96, 0); 
    }
}

/* Rentry Info Section */
.rentry-info {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.info-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    text-align: center;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rentry-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-rentry, .btn-refresh {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-rentry {
    background: var(--gradient-primary);
    color: white;
}

.btn-rentry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 41, 81, 0.4);
}

.btn-refresh {
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-refresh:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-filter {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .category-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .rentry-links {
        flex-direction: column;
        align-items: center;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

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

/* Enhanced Bonus Cards */
.bonus-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bonus-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.bonus-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--background-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

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

.bonus-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.bonus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(255,107,53,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon {
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.bonus-content {
    padding: 1.5rem;
}

.bonus-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bonus-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bonus-code-section {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.bonus-code-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.bonus-code {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.bonus-code:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: scale(1.05);
}

.bonus-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-login, .btn-use-code {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-login {
    background: var(--gradient-secondary);
    color: white;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-use-code {
    background: var(--gradient-primary);
    color: white;
}

.btn-use-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.bonus-details-btn {
    text-align: center;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 8px;
    border-radius: 6px;
}

.bonus-details-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.bonus-timer {
    background: rgba(255, 107, 53, 0.15);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.time-remaining {
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Bonus Modal Styles */
.bonus-modal-content {
    max-width: 600px;
    margin: 0 auto;
}

.bonus-modal-header {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.bonus-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 10px;
    border-radius: 50%;
    font-size: 2rem;
}

.bonus-modal-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-modal-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bonus-modal-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-modal-code {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.code-label {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.code-value {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.code-value:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: scale(1.05);
}

.bonus-features, .bonus-terms {
    margin-bottom: 2rem;
}

.bonus-features h4, .bonus-terms h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bonus-features ul {
    list-style: none;
}

.bonus-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-features li i {
    color: var(--accent-color);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.term-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.term-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.term-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-timer-large {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bonus-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-modal-login, .btn-modal-use {
    padding: 15px 25px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-modal-login {
    background: var(--gradient-secondary);
    color: white;
}

.btn-modal-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-modal-use {
    background: var(--gradient-primary);
    color: white;
}

.btn-modal-use:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Loading and Error States */
.bonus-loading, .bonus-error {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bonus-error i {
    font-size: 3rem;
    color: #f44336;
    margin-bottom: 1rem;
    display: block;
}

.retry-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-top: 1rem;
    transition: var(--transition);
}

.retry-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

/* Responsive Design for Bonus Cards */
@media (max-width: 768px) {
    .bonus-actions {
        grid-template-columns: 1fr;
    }
    
    .bonus-modal-actions {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-amount {
        font-size: 1.5rem;
    }
    
    .bonus-modal-amount {
        font-size: 2rem;
    }
    
    .btn-login, .btn-use-code {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}

/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.welcome-popup.show {
    opacity: 1;
    visibility: visible;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.5s ease;
}

.welcome-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    animation: popupSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

@keyframes popupSlideIn {
    0% {
        transform: scale(0.5) translateY(-50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(-10px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.welcome-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.welcome-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px var(--primary-color));
    animation: iconRotate 3s infinite ease-in-out;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.welcome-logo h2 {
    font-size: 2rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.welcome-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 3s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-color);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 0.6s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1.2s;
}

.particle:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: 1.8s;
}

.particle:nth-child(5) {
    top: 70%;
    right: 10%;
    animation-delay: 2.4s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.welcome-body {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-bonus-highlight {
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.welcome-bonus-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-amount-big {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.bonus-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.welcome-timer {
    background: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    margin-bottom: 2rem;
}

.timer-label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    padding: 0.8rem;
    border-radius: 10px;
    min-width: 60px;
}

.time-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.time-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    animation: blink 1s infinite;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-welcome-join {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-welcome-join::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: all 0.6s;
}

.btn-welcome-join:hover::before {
    left: 100%;
}

.btn-welcome-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-text {
    font-size: 1.2rem;
}

.btn-icon {
    font-size: 1.3rem;
    animation: rocket 2s infinite ease-in-out;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.btn-welcome-continue {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 107, 53, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-welcome-continue:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.welcome-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding-top: 1rem;
}

/* Mobile Responsive for Welcome Popup */
@media (max-width: 768px) {
    .welcome-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .bonus-amount-big {
        font-size: 2.5rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        gap: 0.3rem;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 0.6rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .btn-welcome-join {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
}

/* Primary Blog Section */
.primary-blog-section {
    padding: 2rem 0;
    background: var(--background-color);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.primary-blog-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 2rem;
}

.primary-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.blog-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.primary-blog-card:hover .blog-header img {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.blog-meta i {
    color: var(--accent-color);
}

.blog-body {
    padding: 2rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.keyword-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.blog-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-read-more {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.blog-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #4267b2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.1);
}

/* Blog Content Modal */
.blog-content-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.blog-content-modal.show {
    opacity: 1;
    visibility: visible;
}

.blog-modal-content {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--primary-color);
}

.blog-modal-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
}

.blog-modal-body {
    padding: 2rem;
}

.blog-modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-modal-content-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.blog-modal-content-text h2 {
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.blog-modal-content-text h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
}

.blog-modal-content-text h4 {
    color: var(--accent-color);
    margin: 1rem 0 0.5rem 0;
}

.blog-modal-content-text ul, .blog-modal-content-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-modal-content-text li {
    margin-bottom: 0.5rem;
}

.blog-modal-content-text strong {
    color: var(--primary-color);
}

/* SEO Blog Rotation Indicator */
.blog-rotation-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-header {
        height: 200px;
    }
    
    .blog-title {
        font-size: 1.4rem;
    }
    
    .blog-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-share {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .blog-modal-title {
        font-size: 1.5rem;
    }
    
    .blog-modal-body {
        padding: 1.5rem;
    }
}

/* Compact Bonus Section */
.compact-bonus-section {
    padding: 3rem 0;
    background: var(--background-color);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 10;
}

.compact-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

/* Compact Bonus Card with Urgency System */
.compact-bonus-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.compact-bonus-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Urgency-based styling */
.compact-bonus-card.critical {
    border-color: #ff4757;
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 71, 87, 0.05) 100%);
    animation: criticalPulse 2s infinite;
}

.compact-bonus-card.urgent {
    border-color: #ffa502;
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 165, 2, 0.05) 100%);
}

.compact-bonus-card.warning {
    border-color: #ffed4e;
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 237, 78, 0.05) 100%);
}

.compact-bonus-card.normal {
    border-color: #4CAF50;
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(76, 175, 80, 0.05) 100%);
}

@keyframes criticalPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 71, 87, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 71, 87, 0.6); }
}

/* Urgency Indicator */
.bonus-urgency-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.2rem;
    z-index: 2;
}

.bonus-urgency-indicator.critical {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.compact-bonus-header {
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: center;
    
    position: relative;
    z-index: 10;
}

.site-name {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.bonus-amount-compact {
    font-size: 1.6rem;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.bonus-code-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    z-index: 10;
    
}

.bonus-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.bonus-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bonus-code-hidden {
    background: rgba(255, 107, 53, 0.1);
    border: 1px dashed var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-code-hidden::before {
    content: '••••••••';
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.bonus-code-revealed {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    animation: codeReveal 0.5s ease;
}

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

.btn-copy-code {
    padding: 1rem 2rem;
    background: rgba(255, 107, 53, 0.2);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 160px;
    white-space: nowrap;
}

.btn-copy-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    background: var(--primary-gradient);
    border-color: transparent;
}

.btn-copy-code.copied {
    background: #4CAF50;
}

.compact-bonus-link {
    padding: 1rem 1.5rem;
    
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.btn-visit-site {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    padding: 0.5rem;
    border-radius: 6px;
}

.btn-visit-site:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

/* Bonus Expiry Info */
.bonus-expiry-info {
    margin: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
    
    padding: 0.5rem;
}

.expiry-time {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.expiry-time.critical {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    animation: textBlink 1s infinite;
}

.expiry-time.urgent {
    background: rgba(255, 165, 2, 0.15);
    color: #ffa502;
}

.expiry-time.warning {
    background: rgba(255, 237, 78, 0.15);
    color: #f39c12;
}

.expiry-time.normal {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

@keyframes textBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Copy Success Popup */
.copy-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 3rem 4rem;
    border-radius: 20px;
    text-align: center;
    z-index: 10001;
    border: 2px solid var(--accent-color);
    animation: popupShow 0.8s ease forwards;
}

@keyframes popupShow {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.copy-popup.fade-out {
    animation: popupFade 0.5s ease forwards;
}

@keyframes popupFade {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

.copy-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconPulse 0.8s ease infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.copy-popup-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copy-popup-code {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
    font-family: monospace;
}

/* Lightweight Blog Styles */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-article {
    background: var(--surface-color);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.blog-article h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.blog-article p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-keywords-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyword-simple {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Loyalty System Styles */
.loyalty-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}

.loyalty-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.loyalty-card {
    background: var(--surface-color);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
}

.loyalty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.loyalty-features {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.loyalty-features ul {
    text-align: left;
    list-style: none;
    margin-top: 1rem;
}

.loyalty-features li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Simplified Footer */
.footer {
    background: #0a0a0a;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-message p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface-color);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Banner Sections - Smooth Vertical Slider */
.banner-left, .banner-right {
    position: fixed;
    top: 80px;
    width: 235px;
    height: calc(100vh - 100px);
    z-index: 100;
    overflow: hidden;
    perspective: 1000px;
}

.banner-left {
    left: 10px;
}

.banner-right {
    right: 10px;
    height: calc(200vh - 100px);
}

.banner-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.banner-slider {
    display: flex;
    flex-direction: column;
    animation: continuousVerticalSlide 30s infinite linear;
    gap: 1rem;
}

.banner-slider:hover {
    animation-play-state: paused; /* Pause on hover */
}

#bannerLeft .banner-slider {
    animation: continuousVerticalSlide 30s infinite linear;
}

#bannerRight .banner-slider {
    animation: continuousVerticalSlide 30s infinite linear; /* Both sides scroll in the same direction */
}

@keyframes continuousVerticalSlide {
    0% { 
        transform: translateY(0); 
    }
    100% { 
        transform: translateY(-100%); 
    }
}

.banner-item {
    background: var(--surface-color);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 225px;
    height: 300px;
    transform-style: preserve-3d;
    position: relative;
}

.banner-item:hover {
    transform: rotateY(15deg) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    z-index: 10;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: all 0.3s ease;
}

/* 3D shine effect on hover */
.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 107, 53, 0.2) 50%, transparent 60%);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.banner-item:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

/* Main content adjustment for banners */
@media (min-width: 1440px) {
    .main-content {
        margin-left: 180px;
        margin-right: 180px;
    }
}

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

.parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.parallax-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.parallax-layer:nth-child(1) {
    z-index: 1;
}

.parallax-layer:nth-child(2) {
    z-index: 2;
    opacity: 0.5;
}

.parallax-layer:nth-child(3) {
    z-index: 3;
    opacity: 0.3;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: white;
}

.parallax-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parallax-subtitle {
    font-size: 1.5rem;
    margin: 0 0 2rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: white;
}

.parallax-btn {
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.parallax-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* RTP Games Section */
.rtp-games-section {
    padding: 4rem 0;
    background: var(--background-color);
    position: relative;
}

.rtp-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rtp-game-item {
    background: var(--surface-color);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.rtp-game-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.rtp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b35, #ffd700, #ff6b35, #ff1744, #ff6b35);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.rtp-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.8);
}

.rtp-badge:hover::before {
    transform: scale(1.5);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.rtp-game-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.rtp-game-info {
    padding: 1rem;
    text-align: center;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.game-provider {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

/* RTP Modal Styles */
.rtp-modal-content {
    max-width: 600px;
    background: var(--surface-color);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.rtp-modal-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.rtp-modal-game-image {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.rtp-modal-info {
    flex: 1;
}

.rtp-modal-game-title {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.rtp-modal-game-provider {
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.rtp-modal-rtp-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.rtp-modal-availability h4 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.available-sites {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sites-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.sites-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.site-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.site-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1439px) {
    .banner-left, .banner-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .rtp-games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rtp-modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .rtp-modal-game-image {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
    
    .parallax-title {
        font-size: 2.5rem;
    }
    
    .parallax-subtitle {
        font-size: 1.2rem;
    }
    
    .parallax-layer {
        width: 100%;
        height: 100%;
        transform: none !important;
    }
}

/* Wheel Result Modal */
.wheel-result-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.wheel-result-content {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--primary-color);
}

.wheel-result-header h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.wheel-result-prize {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.wheel-result-message {
    color: var(--text-secondary);
    margin: 1rem 0 2rem 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .compact-bonus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .copy-popup {
        padding: 2rem 3rem;
    }
    
    .copy-popup-icon {
        font-size: 3rem;
    }
    
    .copy-popup-text {
        font-size: 1.5rem;
    }
}

/* Core Web Vitals Optimizations */
/* Critical CSS inline yapılacak */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-size: 1.5rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Ana sayfa varsayılan olarak görünür */
#home-page {
    display: block;
}

#home-page.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--surface-color);
}

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

.feature-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

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

.blog-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content h3 {
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Bonuses Section */
.bonuses-section {
    padding: 4rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bonus-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

/* VIP Section */
.vip-section {
    padding: 4rem 0;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vip-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vip-card.bronze {
    border-color: #cd7f32;
}

.vip-card.silver {
    border-color: #c0c0c0;
}

.vip-card.gold {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.vip-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.vip-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.vip-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.vip-benefits li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
}

.vip-requirement {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 1rem;
}

/* Wheel Section */
.wheel-section {
    padding: 4rem 0;
    text-align: center;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--primary-color);
    z-index: 10;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.spin-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.spin-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.wheel-rules {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.wheel-rules h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wheel-rules ul {
    text-align: left;
    margin-bottom: 1rem;
}

.wheel-rules li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--surface-color);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 0.2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--surface-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .features-grid,
    .blog-grid,
    .bonus-grid,
    .vip-levels {
        grid-template-columns: 1fr;
    }

    .wheel {
        width: 250px;
        height: 250px;
    }

    #wheelCanvas {
        width: 250px;
        height: 250px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .features,
    .blog-section,
    .bonuses-section,
    .vip-section,
    .wheel-section {
        padding: 2rem 0;
    }

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

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

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

.feature-card,
.blog-card,
.bonus-card,
.vip-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

/* Loading animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-secondary);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Casino Guide Section */
.casino-guide-section {
    padding: 4rem 0;
    background: var(--background-color);
    position: relative;
    z-index: 20;
}

.casino-guide-content {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.guide-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s;
}

.guide-card:hover::before {
    left: 100%;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guide-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.guide-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
}

.guide-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.guide-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.guide-meta span i {
    color: var(--primary-color);
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
}

.guide-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.guide-link i {
    transition: transform 0.3s ease;
}

.guide-link:hover i {
    transform: translateX(3px);
}

.guide-tips {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tips-list {
    margin-top: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.tip-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.tip-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tip-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Sticky Footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.footer {
    position: sticky;
    bottom: 0;
    background: var(--secondary-color);
    padding: 2rem 0 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-message {
    flex: 1;
}

.footer-message p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 0;
}

/* Mobile responsiveness for guide section */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-card {
        padding: 1.5rem;
    }
    
    .guide-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .guide-icon {
        font-size: 2rem;
    }
    
    .guide-header h3 {
        font-size: 1.2rem;
    }
    
    .guide-meta {
        justify-content: center;
    }
    
    .guide-link {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Blog Navigation Styles */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-nav-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.blog-nav-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.blog-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s;
}

.blog-nav-card:hover::before {
    left: 100%;
}

.blog-nav-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-nav-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.blog-nav-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
}

.blog-nav-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-nav-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-nav-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.blog-nav-meta span i {
    color: var(--primary-color);
}

.blog-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 25px;
    font-size: 0.95rem;
}

.blog-nav-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.blog-nav-link i {
    transition: transform 0.3s ease;
}

.blog-nav-link:hover i {
    transform: translateX(3px);
}

.blog-tips-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.blog-tips-list {
    margin-top: 1rem;
}

.blog-tip-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.blog-tip-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.blog-tip-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.blog-tip-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Welcome Modal Countdown Timer */
.welcome-countdown-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: pulseCountdown 1s infinite;
}

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

.welcome-image {
    margin-bottom: 1.5rem;
}

.welcome-message {
    text-align: center;
    margin-bottom: 1.5rem;
}

.welcome-message h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.welcome-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Mobile responsiveness for blog navigation */
@media (max-width: 768px) {
    .blog-navigation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-nav-card {
        padding: 1.5rem;
    }
    
    .blog-nav-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .blog-nav-icon {
        font-size: 2rem;
    }
    
    .blog-nav-header h3 {
        font-size: 1.2rem;
    }
    
    .blog-nav-meta {
        justify-content: center;
    }
    
    .blog-nav-link {
        width: 100%;
        justify-content: center;
    }
}

/* ====== PARTICIPATION CONDITIONS STYLES ====== */

.giveaway-publication {
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.publication-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.publication-info i {
    color: var(--accent-color);
}

.participation-conditions {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.conditions-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.conditions-progress {
    background: var(--gradient-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: auto;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.condition-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.condition-item.completed {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2), rgba(0, 206, 201, 0.2));
    border-color: #00b894;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.condition-item.completion-animation {
    animation: conditionComplete 1s ease-out;
}

@keyframes conditionComplete {
    0% { transform: scale(1); background: rgba(255, 255, 255, 0.05); }
    50% { transform: scale(1.05); background: rgba(0, 184, 148, 0.4); }
    100% { transform: scale(1); background: rgba(0, 184, 148, 0.2); }
}

.condition-checkbox {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.condition-item:not(.completed) .condition-checkbox i {
    color: #6c757d;
}

.condition-item.completed .condition-checkbox i {
    color: #00b894;
    animation: checkBounce 0.6s ease-out;
}

@keyframes checkBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.condition-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.condition-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.condition-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.condition-points {
    background: var(--gradient-gold);
    color: #2d3436;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
}

/* Updated participation button styles */
.btn-participate.disabled {
    background: linear-gradient(135deg, #6c757d, #495057);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-participate.disabled:hover {
    background: linear-gradient(135deg, #6c757d, #495057);
    transform: none;
    box-shadow: none;
}

.btn-participate.active {
    background: var(--gradient-primary);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6); }
}

/* ====== WHEEL OF FORTUNE STYLES ====== */

.wheel-of-fortune-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.95), rgba(26, 26, 26, 0.95));
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.wheel-of-fortune-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #00b894, #6c5ce7);
    z-index: -1;
    border-radius: 20px;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.wheel-header {
    text-align: center;
    margin-bottom: 30px;
}

.wheel-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.spinning-icon {
    animation: spin 3s linear infinite;
    color: var(--primary-color);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.participation-progress {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.progress-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-item.target .stat-number {
    color: var(--accent-color);
}

.stat-item.remaining .stat-number {
    color: #e74c3c;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-container {
    position: relative;
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    transition: width 0.5s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.progress-text {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.progress-target-marker {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
    z-index: 2;
}

.wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.wheel-container.locked {
    filter: grayscale(1) opacity(0.6);
}

.wheel-container.unlocked {
    filter: none;
}

.wheel-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 3rem;
    color: #e74c3c;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: lockPulse 2s infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.wheel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
}

.wheel-pointer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.pointer-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #e74c3c;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.wheel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.username-input-container {
    width: 100%;
    text-align: center;
}

.username-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.username-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.username-input::placeholder {
    color: var(--text-secondary);
}

.username-help {
    display: block;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.btn-spin-wheel, .btn-wheel-locked {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    justify-content: center;
}

.btn-spin-wheel {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-spin-wheel:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.btn-spin-wheel:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-spin-wheel.completed {
    background: linear-gradient(135deg, #00b894, #00cec9);
    cursor: not-allowed;
}

.btn-wheel-locked {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.8;
}

.wheel-info {
    margin-top: 30px;
    text-align: center;
}

.wheel-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.prize-item {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.prize-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Wheel Result Modal */
.wheel-result-modal .modal-content {
    max-width: 500px;
    text-align: center;
    background: linear-gradient(135deg, #2d3436, #636e72);
    border: 2px solid var(--primary-color);
}

.result-header {
    margin-bottom: 30px;
}

.winner-animation {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.result-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.result-header h3 {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.prize-result {
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-claim-prize, .btn-close-result {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-claim-prize {
    background: var(--gradient-primary);
    color: white;
}

.btn-claim-prize:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-close-result {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-close-result:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wheel-of-fortune-container {
        margin: 20px 10px;
        padding: 20px;
    }
    
    .wheel-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .progress-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-spin-wheel, .btn-wheel-locked {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .prizes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .condition-item {
        padding: 10px 12px;
    }
    
    .condition-text {
        font-size: 0.85rem;
    }
    
    .conditions-title {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .conditions-progress {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* ====== PARTICIPATION MODAL STYLES ====== */

.participation-modal .modal-content {
    max-width: 600px;
    background: linear-gradient(135deg, #2d3436, #636e72);
    border: 2px solid var(--primary-color);
}

.participation-modal .modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.participation-modal .modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.participation-modal .modal-header h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.publication-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 15px;
    margin: 10px auto 0;
    max-width: fit-content;
}

.publication-date i {
    color: var(--accent-color);
}

.prize-display {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.prize-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prize-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.participation-conditions-modal {
    margin: 2rem 0;
}

.participation-conditions-modal h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.conditions-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.checklist-item.completed {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2), rgba(0, 206, 201, 0.2));
    border-color: #00b894;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.checklist-checkbox {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.checklist-item:not(.completed) .checklist-checkbox i {
    color: #6c757d;
}

.checklist-item.completed .checklist-checkbox i {
    color: #00b894;
    animation: checkBounce 0.6s ease-out;
}

.checklist-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.checklist-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.checklist-text {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
}

.checklist-points {
    background: var(--gradient-gold);
    color: #2d3436;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.username-collection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.username-collection h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.username-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.username-input-modal {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.username-input-modal:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.username-input-modal::placeholder {
    color: var(--text-secondary);
}

.username-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

.participation-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.participation-footer p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.btn-confirm-participation {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.btn-confirm-participation:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-confirm-participation.disabled {
    background: linear-gradient(135deg, #6c757d, #495057);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-confirm-participation.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile responsiveness for participation modal */
@media (max-width: 768px) {
    .participation-modal .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .participation-modal .modal-header,
    .participation-footer {
        padding: 1.5rem;
    }
    
    .participation-modal .modal-body {
        padding: 0 1.5rem;
    }
    
    .prize-display {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .prize-icon {
        font-size: 2.5rem;
    }
    
    .prize-text {
        font-size: 1.3rem;
    }
}

/* Updated Footer Styles for Backlink Support */
@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
    
    .checklist-item {
        padding: 12px;
        gap: 12px;
    }
    
    .checklist-content {
        gap: 10px;
    }
    
    .checklist-text {
        font-size: 0.9rem;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-confirm-participation,
    .btn-telegram {
        min-width: 100%;
    }
}

/* ====== NEW COMPACT BONUS CARD DESIGN ====== */

.compact-bonus-card-new {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.compact-bonus-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.bonus-card-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(2px);
}

.bonus-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bonus-site-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 107, 53, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    display: inline-block;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.bonus-code-display {
    margin: 0.6rem 0;
}

.btn-copy-code-new {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    border: none;
    padding: 1.1rem 1.6rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-copy-code-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-copy-code-new:hover::before {
    left: 100%;
}

.btn-copy-code-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f39c12 0%, #ff6b35 100%);
}

.btn-copy-code-new.copied {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    animation: successPulse 0.6s ease;
}

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

.bonus-expiry-date {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-expiry-date i {
    color: var(--accent-color);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.bonus-card-actions {
    margin-top: 1rem;
}

.btn-visit-site-new {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-visit-site-new:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-visit-site-new i {
    transition: transform 0.3s ease;
}

.btn-visit-site-new:hover i {
    transform: translateX(3px);
}

/* Mobile responsiveness for new bonus cards */
@media (max-width: 768px) {
    .compact-bonus-card-new {
        min-height: 220px;
    }
    
    .bonus-card-overlay {
        padding: 1.2rem;
    }
    
    .bonus-site-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .bonus-amount {
        font-size: 1.3rem;
        padding: 0.3rem 0.6rem;
    }
    
    .btn-copy-code-new {
        padding: 1rem 1.3rem;
        font-size: 1.05rem;
        letter-spacing: 1px;
    }
    
    .bonus-expiry-date {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    .btn-visit-site-new {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

.banner-slider:hover {
    animation-play-state: paused; /* Pause on hover */
}

.banner-container:hover .banner-slider {
    animation-play-state: paused; /* Also pause when hovering container */
}

.banner-slider.paused {
    animation-play-state: paused; /* Pause via JS class toggle */
}

/* SEO Keywords Tags */
.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.keyword-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Trending Topics Section */
.trending-topics {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trending-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trending-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.trending-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trending-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trending-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.trending-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.trending-stats {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--background-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '❓';
    margin-right: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Hero Section */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-keywords {
        flex-direction: column;
        align-items: center;
    }
    
    .keyword-tag {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trending-item,
    .faq-item {
        padding: 20px;
    }
    
    .trending-icon {
        font-size: 2.5rem;
    }
    
    .trending-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .trending-item,
    .faq-item {
        padding: 15px;
    }
    
    .trending-icon {
        font-size: 2rem;
    }
}

/* Trusted Sites Section */
.trusted-sites-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.trusted-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trusted-site-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trusted-site-card::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: left 0.5s ease;
}

.trusted-site-card:hover::before {
    left: 100%;
}

.trusted-site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.site-logo {
    text-align: center;
    margin-bottom: 20px;
}

.site-logo img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.site-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.site-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.site-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.site-actions {
    text-align: center;
}

.btn-visit-site {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-visit-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.btn-visit-site i {
    font-size: 14px;
}

/* Security Resources Section */
.security-resources-section {
    padding: 60px 0;
    background: var(--background-color);
}

.security-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.security-resource-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.security-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.resource-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.resource-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    text-align: center;
    width: fit-content;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.resource-link i {
    font-size: 14px;
}

/* Security Warning */
.security-warning {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.warning-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.warning-content p {
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .trusted-sites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trusted-site-card,
    .security-resource-card {
        padding: 20px;
    }
    
    .site-logo img {
        width: 60px;
        height: 60px;
    }
    
    .site-info h3 {
        font-size: 1.3rem;
    }
    
    .resource-icon {
        font-size: 2rem;
    }
    
    .resource-content h3 {
        font-size: 1.2rem;
    }
    
    .security-warning {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .warning-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .trusted-site-card,
    .security-resource-card {
        padding: 15px;
    }
    
    .site-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .btn-visit-site,
    .resource-link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .security-warning {
        padding: 15px;
    }
    
    .warning-content h3 {
        font-size: 1.2rem;
    }
}