/* Casino Alev - Modern Gaming Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff7000;
    box-shadow: 0 4px 20px rgba(255, 112, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff7000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ff8c00;
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    background: linear-gradient(45deg, #ff7000, #ff8c00);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 112, 0, 0.4);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sidebar-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(255, 112, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sidebar-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 112, 0, 0.5);
}

/* Banner Images */
.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(255, 112, 0, 0.3);
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

/* Sections */
section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(255, 112, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7000, #ff8c00, #ff7000);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #ff7000;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ff7000, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    color: #ff8c00;
    margin: 2rem 0 1rem 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

h3 {
    font-size: 1.5rem;
    color: #ffa500;
    margin: 1.5rem 0 1rem 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Lists */
ul, ol {
    padding-left: 2rem;
}

li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

strong {
    color: #ff8c00;
    font-weight: 600;
}

/* Links */
a {
    color: #ff7000;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

a:visited {
    color: #ffa500;
}

a:active {
    color: #ff8c00;
}

/* Table Container */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Table Container Scrollbar */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff7000, #ff8c00);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
}

/* Tables */
table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.8);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 112, 0, 0.2);
}

th {
    background: linear-gradient(45deg, #ff7000, #ff8c00);
    color: #000000;
    font-weight: bold;
    font-size: 1.1rem;
}

tr:hover {
    background: rgba(255, 112, 0, 0.1);
}

/* FAQ Styles */
dl {
    margin: 2rem 0;
}

dt {
    font-weight: bold;
    color: #ff8c00;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    padding: 1rem;
    background: rgba(255, 112, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff7000;
}

dd {
    margin: 0 0 1rem 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border-left: 2px solid #ff8c00;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
    border-top: 3px solid #ff7000;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7000, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    color: #cccccc;
}

.footer-section .title {
    color: #ff7000;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p, .footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 112, 0, 0.3);
    padding-top: 2rem;
    color: #888888;
    font-size: 0.9rem;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.header-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #ffffff;
    border: 2px solid #ff7000;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.header-btn:hover {
    background: linear-gradient(135deg, #ff7000 0%, #ff8c00 50%, #ff7000 100%);
    color: #000000;
    border-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 112, 0, 0.4);
    text-shadow: none;
    text-decoration: none;
}

.header-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 112, 0, 0.3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ff7000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 112, 0, 0.1);
}

.mobile-menu-toggle.active {
    color: #ff8c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .header-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 52px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0f0f0f 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        border-top: 2px solid #ff7000;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav li {
        width: 100%;
        text-align: center;
    }
    
    .nav a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 112, 0, 0.1);
    }
    
    .nav a:hover {
        background: rgba(255, 112, 0, 0.1);
        transform: none;
    }
    
    .main-content {
        padding: 1rem;
    }

    
    /* Адаптивность для встроенного баннера */
    @media (max-width: 768px) {
        .main-content div[style*="display: flex"] {
            flex-direction: column !important;
        }
        
        .main-content div[style*="width: 300px"] {
            width: 100% !important;
        }
    }
    
    section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .banner-image {
        height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .banner-image {
        height: auto;
    }
    
    section {
        padding: 1rem;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 112, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 112, 0, 0.6); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff7000, #ff8c00);
    border: none;
    border-radius: 50%;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 112, 0, 0.4);
}

.scroll-to-top:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 112, 0, 0.6);
}

.scroll-to-top.show {
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff7000, #ff8c00);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
}

/* Header buttons responsive styles */
@media (max-width: 768px) {
    .header-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
}
