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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Ticker Styles */
.ticker-container {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #f0932b, #6c5ce7);
    background-size: 600% 100%;
    animation: gradientShift 8s ease infinite;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: tickerMove 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    margin-right: 50px;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ticker-item.winner {
    color: #ffd700;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

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

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

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 2px solid #6c5ce7;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #6c5ce7;
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #6c5ce7;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

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

.btn-register {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.float-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.register-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.login-btn {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: white;
}

.bonus-btn {
    background: linear-gradient(45deg, #ffd700, #ffb700);
    color: #000;
}

.float-btn:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Button Styles */
.cta-button {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
    background: linear-gradient(45deg, #5b4bd6, #9333ea);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4);
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, #00bfff, #2980b9);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.6);
}

.cta-button.tertiary {
    background: linear-gradient(45deg, #ffd700, #ffb700);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.tertiary:hover {
    background: linear-gradient(45deg, #ffed4e, #ffa500);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #6c5ce7, #00d2ff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(108, 92, 231, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.8)); }
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #6c5ce7;
    margin-top: 100px;
    padding: 50px 0 30px;
}

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

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    color: #6c5ce7;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6c5ce7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    body {
        padding-top: 120px;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 20px;
    }
    
    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .floating-buttons {
        right: 10px;
        gap: 10px;
    }
    
    .float-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .ticker-item {
        font-size: 12px;
        margin-right: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

	.float-btn span {
		display: none;
	}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.bounce-in {
    animation: bounceIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glow Effects */
.glow {
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.glow-gold {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.glow-blue {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.glow-red {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}