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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2844 50%, #0f1d35 100%);
    color: #ffffff;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
    transform: translateY(-2px);
}

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

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

.btn {
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-login {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-login:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-register {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-register:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.5);
}

/* Banner Section */
.banner-section {
    padding: 40px 0;
}

.banner-placeholder {
    background: linear-gradient(135deg, rgba(20, 40, 70, 0.6) 0%, rgba(30, 50, 80, 0.6) 100%);
    border: 2px dashed rgba(52, 152, 219, 0.5);
    border-radius: 15px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.banner-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

/* Main Title */
.main-title-section {
    padding: 40px 0 30px;
    text-align: center;
}

.main-title-section h1 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

/* Slots Section */
.slots-section {
    padding: 40px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.slot-card {
    background: rgba(20, 40, 70, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.slot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
    border-color: rgba(52, 152, 219, 0.6);
}

.slot-card a {
    display: block;
}

.slot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.slot-card:hover img {
    transform: scale(1.05);
}

/* Bonuses Section */
.bonuses-section {
    padding: 60px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(20, 40, 70, 0.8) 0%, rgba(30, 50, 80, 0.8) 100%);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
    border-color: rgba(52, 152, 219, 0.6);
}

.bonus-badge {
    display: inline-block;
    background: #2980b9;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-badge-casino {
    background: #e74c3c;
}

.bonus-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498db;
    line-height: 1.3;
}

.bonus-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.bonus-dates {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.btn-activate {
    width: 100%;
    background: linear-gradient(135deg, #27d9a6 0%, #1abc9c 100%);
    color: #ffffff;
    font-size: 16px;
    padding: 15px;
    margin-top: 10px;
}

.btn-activate:hover {
    background: linear-gradient(135deg, #1abc9c 0%, #27d9a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 217, 166, 0.4);
}

/* Footer */
.footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 2px solid rgba(52, 152, 219, 0.3);
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #3498db;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.responsible-gaming {
    color: #f39c12;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: center;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .banner-placeholder {
        min-height: 180px;
    }
    
    .main-title-section h1 {
        font-size: 32px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-card {
        padding: 25px;
    }
    
    .bonus-card h3 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .banner-placeholder {
        min-height: 150px;
    }
    
    .banner-placeholder p {
        font-size: 14px;
    }
    
    .main-title-section h1 {
        font-size: 24px;
    }
    
    .slots-grid {
        gap: 10px;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-card h3 {
        font-size: 18px;
    }
    
    .bonus-card p {
        font-size: 14px;
    }
    
}
