/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #FFD700;
    --secondary-color: #FF6B35;
    --accent-color: #1E90FF;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --card-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-muted: #888888;
    --success-color: #00FF88;
    --error-color: #FF4757;
    --warning-color: #FFA726;
    --border-color: #333333;
    --shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    --gradient-blue: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Running Ticker */
.ticker-container {
    background: var(--gradient-primary);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    color: var(--dark-bg);
}

.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-ticker 30s linear infinite;
}

@keyframes scroll-ticker {
    0% {
        transform: translate3d(10%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.text-green {
    color: var(--success-color);
}

.text-red {
    color: var(--error-color);
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav a:hover,
.nav a.active {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

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

.btn-login,
.btn-register {
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.btn-register {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border: none;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-play,
.btn-step,
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-step {
    background: var(--gradient-step, linear-gradient(90deg, #6a11cb 0%, #2575fc 100%));
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

.btn-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(106, 17, 203, 0.3);
}


.btn-play {
    background: var(--gradient-blue);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Cards */
.card-base {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--primary-color);
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-icon {
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}
@media (max-width: 1024px) {
	.logo span {
		display: none;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        z-index: 1001;
        border-bottom: 2px solid var(--primary-color);
        padding: 1rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        animation: slideDown 0.3s ease;
    }
		.nav.active ul {
			flex-direction: column;
		}

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
		.header-buttons a {
			padding: .5rem;
		}
    
    h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .ticker {
        font-size: 0.9rem;
    }
}