/* Alev Casino - Красно-черный дизайн */
* {
    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, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    min-height: 100vh;
    position: relative;
}

/* Top Status Bar */
.top-status-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    padding: 8px 0;
    font-size: 12px;
    color: #cccccc;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-status-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.status-item {
    display: inline-block;
    margin: 0 15px;
    padding: 4px 8px;
    border-radius: 12px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: scale(1.05);
}

.status-item .icon {
    color: #DC143C;
    margin-right: 5px;
    font-size: 14px;
}

.status-item .number {
    color: #FF6B6B;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.status-item .label {
    color: #cccccc;
    font-size: 11px;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #8B0000 0%, #DC143C 50%, #8B0000 100%);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3);
}

.logo img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav a::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;
    z-index: -1;
}

.nav a:hover::before {
    left: 100%;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Banner Styles */
.banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    margin: 30px 0;
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: scale(1.02);
}

/* Side Banner Styles */
.side-banner {
    width: 260px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.side-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
    border-color: #DC143C;
}

.side-banner-container {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.side-banner-container::after {
    content: '🔥 TIKLA!';
    position: absolute;
    top: 10px;
    right: 10px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #8B0000, #DC143C);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    animation: pulse 2s infinite;
}

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

/* Section Styles */
section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(145deg, rgba(139, 0, 0, 0.1), rgba(220, 20, 60, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #DC143C, #8B0000);
}

h1 {
    font-size: 2.5em;
    color: #DC143C;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #DC143C);
    border-radius: 2px;
}

h2 {
    font-size: 1.8em;
    color: #FF6B6B;
    margin: 25px 0 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

h3 {
    font-size: 1.4em;
    color: #FF8E8E;
    margin: 20px 0 10px 0;
}

p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Lists */
ul {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    margin: 10px 0;
    position: relative;
}

li::before {
    content: '🔥';
    position: absolute;
    left: -25px;
    top: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
}

th {
    background: linear-gradient(90deg, #8B0000, #DC143C);
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

tr:hover {
    background: rgba(220, 20, 60, 0.1);
}

/* Footer Styles */
.footer {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    border-top: 3px solid #DC143C;
    margin-top: 60px;
    padding: 40px 0 20px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #DC143C, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-title {
    color: #DC143C;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: block;
}

.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: #DC143C;
    text-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 20, 60, 0.3);
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-status-bar {
        font-size: 10px;
        padding: 6px 0;
    }
    
    .status-item {
        margin: 0 8px;
        padding: 3px 6px;
    }
    
    .status-item .icon {
        font-size: 12px;
    }
    
    .status-item .label {
        font-size: 10px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #8B0000 0%, #DC143C 50%, #8B0000 100%);
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .banner {
        height: 200px;
    }
    
    .side-banner {
        width: auto;
        height: 250px;
        margin: 20px 0;
    }
    
    .side-banner-container {
        width: auto;
        margin: 0 auto;
        text-align: center;
    }
    
    .bottom-banner {
        padding: 4px 6px;
    }
    
    .bottom-banner-content {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .bottom-banner-text {
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
        flex: 1;
    }
    
    .bottom-banner-button {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 12px;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .main-content {
        padding: 15px 10px;
    }
    
    section {
        padding: 15px;
    }
    
    .banner {
        height: 150px;
    }
    
    .bottom-banner {
        padding: 3px 4px;
    }
    
    .bottom-banner-content {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .bottom-banner-text {
        font-size: 9px;
        line-height: 1;
        white-space: nowrap;
        flex: 1;
    }
    
    .bottom-banner-button {
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 10px;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .scroll-to-top {
        bottom: 60px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

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

section {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8B0000, #DC143C);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #DC143C, #8B0000);
}

/* Bottom Banner */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B0000 0%, #DC143C 50%, #8B0000 100%);
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(220, 20, 60, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.bottom-banner.show {
    transform: translateY(0);
}

.bottom-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.bottom-banner-text {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    flex: 1;
    min-width: 300px;
}

.bottom-banner-button {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bottom-banner-button:hover {
    background: linear-gradient(45deg, #FF8E8E, #FF6B6B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC143C, #8B0000);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Additional Effects */
.strong {
    color: #FF6B6B;
    font-weight: bold;
}

/* FAQ Accordion Styles */
.faq-accordion {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(139, 0, 0, 0.1), rgba(220, 20, 60, 0.05));
    border: 1px solid rgba(220, 20, 60, 0.2);
}

.faq-question {
    background: linear-gradient(90deg, #8B0000, #DC143C);
    color: #ffffff;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(90deg, #DC143C, #8B0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(220, 20, 60, 0.3);
}

.faq-answer.active {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
}

/* Link Styles */
a {
    color: #FF6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #DC143C;
    text-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}
