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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 25%, #2d1b3d 50%, #1a0b2e 75%, #0f051d 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

main {
	overflow-x: hidden;
}

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

/* Ticker */
.ticker {
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffcc02, #37b24d, #1c7ed6, #9c36b5);
    background-size: 600% 100%;
    animation: rainbow 3s ease infinite;
    color: #000;
    font-weight: 700;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-size: 14px;
}

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

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

.ticker-content span {
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

/* Header */
.header {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 5, 29, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 24px;
    color: #ffd700;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.btn-login,
.btn-register {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-login {
    color: #fff;
    border-color: #ffd700;
}

.btn-login:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.6);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); }
}

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

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
}

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0015, #1a0b2e);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 100px;
}

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

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

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

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

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

.footer-section a:hover {
    color: #ffd700;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.payment-icons i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.payment-icons i:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 50%, #2d1b3d 100%);
}

.page-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero h2 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.animate-text {
    animation: fadeInUp 1s ease-out;
}

.animate-card {
    animation: fadeInUp 1s ease-out;
}

.animate-card:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-card:nth-child(3) {
    animation-delay: 0.2s;
}

.animate-card:nth-child(4) {
    animation-delay: 0.3s;
}

.animate-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }

		.page-hero {
			padding-top: 0;
		}
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h2 {
        font-size: 1.4rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
    }
    
    .floating-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .ticker {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-buttons {
        gap: 10px;
    }

		.nav-logo span {
			display: none;
		}
    
    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Main content offset */
main {
    margin-top: 120px;
}