/* General Styles */
:root {
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --secondary-color: #00FF88;
    --accent-color: #FF6B35;
    --background-dark: #0A0E1A;
    --background-darker: #050814;
    --surface-color: #1A1F35;
    --surface-light: #252B45;
    --text-primary: #FFFFFF;
    --text-secondary: #B8BCC8;
    --text-muted: #8B92A8;
    --border-color: #2A3046;
    --shadow-light: rgba(255, 215, 0, 0.1);
    --shadow-medium: rgba(255, 215, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    --gradient-background: linear-gradient(135deg, #0A0E1A 0%, #050814 100%);
}

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

a {
	text-decoration: none;
	color: var(--text-primary);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

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

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Running Ticker */
.ticker-wrap {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--background-dark);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 80px;
    font-weight: 600;
    font-size: 14px;
}

.ticker-item i {
    color: var(--background-dark);
}

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

/* Header */
.header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gradient-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--surface-color);
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-links {
    display: flex;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.quick-link:hover,
.quick-link.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: var(--shadow-light);
}

.bonus-link {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.bonus-link:hover,
.bonus-link.active {
    background: rgba(0, 255, 136, 0.1);
}

.vip-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.vip-link:hover,
.vip-link.active {
    background: var(--shadow-light);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::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: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-dark);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--shadow-light);
}

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

/* Main Container */
.main-container {
    display: flex;
    min-height: calc(100vh - 140px);
}

/* Sidebar Bonus */
.sidebar-bonus {
    padding: 30px;
}

.bonus-card {
    background: var(--gradient-primary);
    color: var(--background-dark);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.bonus-icon {
    background: var(--background-dark);
    color: var(--primary-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.bonus-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--background-darker);
    text-align: center;
}

.bonus-card p {
    font-size: 15px;
    font-weight: 500;
		color: var(--background-darker);
    margin: 0 0 10px 0;
    text-align: center;
}

.btn-bonus {
    display: inline-block;
    background: var(--background-dark);
    color: var(--primary-color);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px var(--shadow-light);
    font-size: 15px;
    margin-top: 6px;
}

.btn-bonus:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 16px var(--shadow-medium);
}


/* Sidebar */
.sidebar {
    width: 300px;
    background: var(--surface-color);
    border-right: 1px solid var(--border-color);
    padding: 30px 0;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transition: all 0.3s ease;
}

.sidebar-header {
    padding: 0 30px 30px;
    border-bottom: 1px solid var(--border-color);
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Categories */
.categories {
    padding: 30px;
}

.categories h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.category-item:hover,
.category-item.active {
    background: var(--surface-light);
    color: var(--primary-color);
}

.category-item i {
    width: 20px;
    text-align: center;
}

.category-item span:first-of-type {
    flex: 1;
    color: var(--text-secondary);
    font-weight: 500;
}

.category-item.active span:first-of-type {
    color: var(--text-primary);
}

.category-item .count {
    background: var(--surface-light);
    color: var(--text-muted);
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.category-item.active .count {
    background: var(--primary-color);
    color: var(--background-dark);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px;
    background: var(--background-dark);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.section-header h2 i {
    color: var(--primary-color);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--gradient-primary);
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.security-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.security-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface-light);
    border-radius: 6px;
    font-size: 12px;
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 8px 12px;
    background: var(--surface-light);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom .copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}


/* CTA Section Styles */
.cta-section {
	background: var(--gradient-primary);
	color: var(--background-dark);
	padding: 60px 0;
	text-align: center;
	border-radius: 18px;
	margin: 40px 0 0 0;
	box-shadow: 0 8px 32px var(--shadow-medium);
}

.cta-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-section h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 18px;
	color: var(--background-dark);
	letter-spacing: 1px;
}

.cta-section p {
	color: var(--background-dark);
	font-size: 1.15rem;
	margin-bottom: 32px;
}

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

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-color);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .quick-links {
        display: none;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .sidebar {
        padding: 20px 0;
    }
    
    .categories {
        padding: 20px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .ticker-item {
        font-size: 13px;
        margin-right: 40px;
    }
    
    .sidebar {
        display: none;
    }

		.sidebar.mobile-open {
			display: block;
		}
    
    .main-content {
        padding: 15px 10px;
    }
}

/*/ Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    background: var(--surface-color);
}

::-webkit-scrollbar-thumb {
    background: var(--shadow-light);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

::-webkit-scrollbar-track {
    background: var(--surface-light);
    border-radius: 8px;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--shadow-light) var(--surface-light);
}
