/* Favorit Template - Index Style - Casino Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

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

body { 
    font-family: 'Poppins', sans-serif;
    line-height: 1.6; 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh; 
    padding: 30px 20px;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(253, 197, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container { 
    max-width: 1000px; 
    margin: 0 auto; 
    background: white; 
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 0 2px rgba(255, 107, 53, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

header {
    text-align: center;
    padding: 60px 40px 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fdc500 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "🎰 🎲 🎯 🎰 🎲 🎯";
    position: absolute;
    top: 10px;
    left: 0;
    width: 200%;
    font-size: 2em;
    opacity: 0.2;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

h1 { 
    font-size: 3.2em; 
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    animation: bounce 1s ease-out;
}

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

.stat-value {
    font-size: 3em;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.95;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    padding: 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
}

ul { 
    list-style: none; 
    padding: 0;
    display: grid;
    gap: 16px;
}

li { 
    margin: 0;
    animation: slideIn 0.5s ease-out backwards;
}

li:nth-child(1) { animation-delay: 0.1s; }
li:nth-child(2) { animation-delay: 0.15s; }
li:nth-child(3) { animation-delay: 0.2s; }
li:nth-child(4) { animation-delay: 0.25s; }
li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

a { 
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px; 
    background: white;
    border-radius: 16px; 
    text-decoration: none; 
    color: #2d3748; 
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid #ffe8db;
    font-size: 1.08em;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

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

a:hover::before {
    left: 100%;
}

a:hover { 
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white; 
    transform: translateX(15px) scale(1.03);
    border-color: #fdc500;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.number {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    min-width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
}

.number::after {
    content: "🎰";
    position: absolute;
    top: -5px;
    right: -8px;
    font-size: 0.6em;
}

a:hover .number {
    background: white;
    color: #ff6b35;
    transform: rotate(360deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

footer {
    padding: 40px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    color: #cbd5e0;
    font-size: 0.95em;
}

footer p {
    margin-bottom: 12px;
}

footer strong {
    color: #ff6b35;
    font-weight: 700;
}

.disclaimer {
    margin-top: 25px;
    padding: 20px;
    background: rgba(253, 197, 0, 0.15);
    border: 2px solid #fdc500;
    border-radius: 12px;
    font-size: 0.8em;
    text-align: left;
    color: #ffd966;
    line-height: 1.7;
}

.disclaimer strong {
    color: #fdc500;
}

/* Sparkle effect */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 15px 10px;
    }
    
    .container {
        border-radius: 20px;
    }
    
    header {
        padding: 40px 24px 35px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .stats {
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2.2em;
    }
    
    nav {
        padding: 30px 20px;
    }
    
    a {
        padding: 18px 20px;
        font-size: 1em;
        gap: 15px;
    }
    
    .number {
        min-width: 42px;
        height: 42px;
        font-size: 1em;
    }
    
    footer {
        padding: 30px 20px;
    }
}
