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

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

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
    }
}

@keyframes neon {
    0%, 100% {
        text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493, 0 0 30px #ff1493;
    }
    50% {
        text-shadow: 0 0 5px #ff1493, 0 0 10px #ff1493, 0 0 15px #ff1493;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.action-section {
	padding: 80px 0;
	background: rgba(15, 52, 96, 0.3);
}

.action-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

.action-btn {
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	animation: fadeInUp 0.8s ease-out;
	flex: 1;
	min-width: 250px;
	justify-content: center;
}

.action-btn.primary {
	background: linear-gradient(135deg, #ff1493 0%, #ffd700 100%);
	color: #000000;
}

.action-btn.secondary {
	background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
	color: #000000;
}

.action-btn.tertiary {
	background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
	color: #000000;
}

.action-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.exchange-rates {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: slideInLeft 0.6s ease-out;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
}

.rate-item i {
    color: #ffd700;
}

.winner-announcement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

.winner-announcement i {
    color: #ffd700;
    animation: spin 2s linear infinite;
}

.top-buttons {
    display: flex;
    gap: 10px;
    animation: slideInRight 0.6s ease-out;
}

.top-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.free-money {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
}

.lucky-drive {
    background: linear-gradient(135deg, #ff1493 0%, #8a2be2 100%);
    color: #fff;
}

.top-btn:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #ff1493;
    animation: neon 2s infinite alternate;
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ff1493;
    transform: translateY(-2px);
}

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

.login-btn, .register-btn {
    padding: 10px 20px;
    border: 2px solid #ff1493;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn {
    background: transparent;
    color: #00bfff;
    border-color: #00bfff;
}

.register-btn {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
    border-color: transparent;
}

.login-btn:hover {
    background: #00bfff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
    animation: pulse 1s infinite;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #ff1493;
    cursor: pointer;
}

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

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.register-float {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
}

.login-float {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #ffffff;
}

.bonus-float {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000000;
}

.floating-btn:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

.floating-btn i {
    font-size: 20px;
    margin-bottom: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
    margin-top: 60px;
}

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

.footer-section h3 {
    color: #ff1493;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

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

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

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

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

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

.payment-methods i {
    color: #cccccc;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #ff1493;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-banner {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .exchange-rates {
        gap: 15px;
    }
    
    .rate-item {
        font-size: 10px;
    }
    
    .winner-announcement {
        font-size: 12px;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav {
        display: none;
    }

    .nav.mobile-open {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        background: rgba(26, 26, 46, 0.98);
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 200;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .floating-buttons {
        right: 10px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 10px;
    }
    
    .floating-btn i {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .login-btn, .register-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .floating-buttons {
        right: 5px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #ffffff;
}

.btn-success {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff1493;
    animation: spin 1s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }