/* Reset and Base Styles */
* {
    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-color: #61251A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: rgba(244, 134, 7, 1);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: rgb(255 186 106);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: rgba(244, 134, 7, 1);
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 12px 24px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(0, 183, 240, 1) 0%, rgba(1, 235, 251, 1) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 183, 240, 0.3);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(90deg, rgba(229, 105, 4, 1) 0%, rgba(244, 134, 7, 1) 100%);
    color: #fff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(229, 105, 4, 0.3);
}

/* Header */
.header {
    background-color: #833D2E;
    border-bottom: 1px solid #FFD5B5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    height: 30px;
    width: auto;
}

.logo a {
    height: 100%;
}

.logo a img {
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    color: #FFD5B5;
}

.nav-menu a.active {
    color: #FFD5B5;
    background: linear-gradient(90deg, rgba(229, 105, 4, 0.2) 0%, rgba(244, 134, 7, 0.2) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(244, 134, 7, 0.5);
    box-shadow: 0 0 15px rgba(244, 134, 7, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 800px;
    margin-bottom: 2rem;
}

header .container {
    max-width: unset;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    max-width: 1200px;
    margin: 2rem auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;

}

.slide-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.slide-content p {
    margin-bottom: 1.5rem;
    color: #fff;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    min-height: 50px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    
}

/* Main Content */
.main-content {
    padding:0;
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #833D2E 0%, #833D2E 100%);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.casino-world {
    padding: 3rem 0;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background-color: #833D2E;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: rgba(244, 134, 7, 1);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Tables */
.slots-table, .sports-table, .bonus-table {
    margin: 2rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

th {
    background-color: #833D2E;
    color: #fff;
    font-weight: 600;
}

tr:hover {
    background-color: #833D2E;
}

/* Sections */
.popular-slots, .sports-betting, .bonus-offers {
    padding: 3rem 0;
    
}

.popular-slots:nth-child(even), .sports-betting:nth-child(even), .bonus-offers:nth-child(even) {
    background: #612d22;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #833D2E;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid rgba(244, 134, 7, 1);
}

.faq-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Warning Section */
.warning-section {
    padding: 2rem 0;
    background: #5f2f24;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    color: #ffeaa7;
    border-radius: 10px;
    justify-content: center;
    border: 1px solid #ffeaa7;
}

.warning-box i {
    color: #ffeaa7;
    font-size: 1.5rem;
}

.warning-box p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #833D2E;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD5B5;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD5B5;
}

.footer-bottom {
    border-top: 1px solid #FFD5B5;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-systems {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #FFD5B5;
}

.copyright, .developers {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.nav-menu a {
    overflow: hidden;
}

@media (max-width: 1790px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #833D2E;
        padding: 1rem;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-menu a.active {
        background: linear-gradient(90deg, rgba(229, 105, 4, 0.3) 0%, rgba(244, 134, 7, 0.3) 100%);
        padding: 10px 20px;
        border-radius: 25px;
        border: 2px solid rgba(244, 134, 7, 0.7);
        box-shadow: 0 0 20px rgba(244, 134, 7, 0.4);
    }
    
    .nav.active {
        display: block;
    }
    
    .burger-menu {
        order: 3;
        display: flex;
    }
}

@media (max-width: 768px) {
    
    .logo {
        height: 25px;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
    }

    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 1rem;
        max-width: 90%;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-systems {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 225px;
    }
    
    .slide-content {
        padding: 0.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }

    .btn {
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
        order: 3;
        margin-top: 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .burger-menu {
        order: 2;
    }
}

/* Image Styles */
.hero-image, .casino-image, .bonus-image, .sports-image, .slots-image, .slots-bonus-image, .bonus-welcome-image, .bonus-security-image, .sports-variety-image, .sports-bonus-image, .aviator-mechanics-image, .aviator-overview-image, .mobile-functions-image, .mobile-security-image, .login-process-image, .login-security-image, .about-company-image, .about-games-image, .casino-games-variety-image, .casino-games-bonus-image {
    margin: 2rem 0;
    text-align: center;
}

.hero-image img, .casino-image img, .bonus-image img, .sports-image img, .slots-image img, .slots-bonus-image img, .bonus-welcome-image img, .bonus-security-image img, .sports-variety-image img, .sports-bonus-image img, .aviator-mechanics-image img, .aviator-overview-image img, .mobile-functions-image img, .mobile-security-image img, .login-process-image img, .login-security-image img, .about-company-image img, .about-games-image img, .casino-games-variety-image img, .casino-games-bonus-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover, .casino-image img:hover, .bonus-image img:hover, .sports-image img:hover, .slots-image img:hover, .slots-bonus-image img:hover, .bonus-welcome-image img:hover, .bonus-security-image img:hover, .sports-variety-image img:hover, .sports-bonus-image img:hover, .aviator-mechanics-image img:hover, .aviator-overview-image img:hover, .mobile-functions-image img:hover, .mobile-security-image img:hover, .login-process-image img:hover, .login-security-image img:hover, .about-company-image img:hover, .about-games-image img:hover, .casino-games-variety-image img:hover, .casino-games-bonus-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-image {
    margin-bottom: 2rem;
}

.casino-image {
    margin: 2rem 0;
}

.bonus-image {
    margin: 2rem 0;
}

.sports-image {
    margin: 2rem 0;
}

.slots-image {
    margin: 2rem 0;
}

.slots-bonus-image {
    margin: 2rem 0;
}

.bonus-welcome-image {
    margin: 2rem 0;
}

.bonus-security-image {
    margin: 2rem 0;
}

.sports-variety-image {
    margin: 2rem 0;
}

.sports-bonus-image {
    margin: 2rem 0;
}

.aviator-mechanics-image {
    margin: 2rem 0;
}

.aviator-overview-image {
    margin: 2rem 0;
}

.mobile-functions-image {
    margin: 2rem 0;
}

.mobile-security-image {
    margin: 2rem 0;
}

.login-process-image {
    margin: 2rem 0;
}

.login-security-image {
    margin: 2rem 0;
}

.about-company-image {
    margin: 2rem 0;
}

.about-games-image {
    margin: 2rem 0;
}

.casino-games-variety-image {
    margin: 2rem 0;
}

.casino-games-bonus-image {
    margin: 2rem 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus, a:focus {
    outline: 2px solid rgba(244, 134, 7, 1);
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
