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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

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

.logo svg {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navigation a:hover {
    color: #FFD700;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

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

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

.btn-login {
    color: #FFD700;
    background: transparent;
}

.btn-login:hover {
    background: #FFD700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-signup {
    background: #FFD700;
    color: #000;
}

.btn-signup:hover {
    background: #FFA500;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #8B0000 0%, #4B0082 50%, #8B0000 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(75, 0, 130, 0.8) 50%, rgba(139, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.brand-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.9;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-characters {
    flex: 1;
    position: relative;
    height: 300px;
}

.character {
    position: absolute;
    width: 120px;
    height: 160px;
    border-radius: 10px;
    background: linear-gradient(45deg, #6B73FF, #000DFF);
    opacity: 0.9;
}

.wizard {
    top: 20px;
    right: 200px;
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
}

.adventurer {
    top: 80px;
    right: 50px;
    background: linear-gradient(45deg, #CD853F, #8B4513);
}

.phone-mockup {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 160px;
    background: linear-gradient(145deg, #2C3E50, #34495E);
    border-radius: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #1a1a2e;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: linear-gradient(145deg, #2C3E50, #34495E);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-image {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
}

.game-title {
    padding: 15px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

.show-more {
    text-align: center;
}

.show-more-btn {
    background: linear-gradient(45deg, #6C7B7F, #5A6C74);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: linear-gradient(45deg, #5A6C74, #4A5C64);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #16213e;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.main-content h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.main-content h2 {
    font-size: 2rem;
    color: #FFA500;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 165, 0, 0.3);
}

.main-content h3 {
    font-size: 1.5rem;
    color: #87CEEB;
    margin: 30px 0 15px 0;
}

.main-content h4 {
    font-size: 1.3rem;
    color: #FFD700;
    margin: 25px 0 15px 0;
}

.main-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #E0E0E0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1rem;
}

.author-title {
    color: #87CEEB;
    font-size: 0.9rem;
    margin: 5px 0;
}

.publish-date {
    color: #B0B0B0;
    font-size: 0.85rem;
}

.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: linear-gradient(45deg, #2C3E50, #34495E);
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

td {
    color: #E0E0E0;
}

tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.author-bio {
    margin-top: 50px;
    padding: 30px;
    background: rgba(75, 0, 130, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.author-bio h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.casino-summary, .promo-box, .contact-info {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.summary-title, .promo-title, .contact-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.fact-item, .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.icon {
    flex-shrink: 0;
}

.promo-box {
    text-align: center;
    background: linear-gradient(135deg, #8B0000, #4B0082);
    border: 2px solid #FFD700;
}

.promo-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin: 15px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.promo-subtitle {
    color: #E0E0E0;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.promo-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.promo-btn:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Casino Overview */
.casino-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    text-align: center;
}

.overview-title {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

.overview-header p {
    font-size: 1.2rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #0F0F23;
    padding: 60px 0 30px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

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

.footer-section {
    color: #E0E0E0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text p {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

.badge {
    padding: 8px 15px;
    background: linear-gradient(45deg, #2C3E50, #34495E);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        order: -1;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-characters {
        position: relative;
        height: 200px;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
    }
    
    .navigation ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .hero {
        margin-top: 120px;
        padding: 40px 0;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-title {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .table-wrapper {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-login, .btn-signup {
        text-align: center;
        width: 100%;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .bonus-badge {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .game-title {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
    }
    
    .main-content h2 {
        font-size: 1.4rem;
    }
    
    .main-content h3 {
        font-size: 1.2rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-amount {
        font-size: 2.5rem;
    }
    
    .casino-summary, .promo-box, .contact-info {
        padding: 20px;
    }
    
    .table-wrapper {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 8px 5px;
    }
}