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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 42, 42, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 224, 0, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #ff2a2a;
    margin-bottom: 20px;
}

.preloader .loader {
    width: 50px;
    height: 50px;
    border: 3px solid #1b1b1b;
    border-top-color: #ff2a2a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2a2a, #ffe000);
    transition: width 0.5s ease;
}

.navbar.scrolled::before {
    width: 100%;
}

.navbar.scrolled {
    background: rgba(11, 11, 11, 0.98);
    box-shadow: 0 2px 20px rgba(255, 42, 42, 0.2);
    border-bottom-color: rgba(255, 42, 42, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #ff2a2a;
}

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

.navbar .nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.navbar .nav-link:hover {
    color: #ff2a2a;
}

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

.navbar .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar .nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ff2a2a;
    transition: all 0.3s;
}

.navbar .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar .nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    max-width: 100%;
    overflow: hidden;
}


.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.7) 0%, rgba(11, 11, 11, 0.9) 100%);
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 20px 0;
}

.hero .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 120px);
    margin-bottom: 20px;
    color: #ffffff;
}

.hero .hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
    animation: heroSubtitleAppear 1.4s ease 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes heroSubtitleAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroButtonsAppear 1.6s ease 0.6s both;
}

@keyframes heroButtonsAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #cccccc;
    font-size: 12px;
}

.hero .scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #cccccc;
    border-radius: 12px;
    margin: 10px auto;
    position: relative;
}

.hero .scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ff2a2a;
    border-radius: 2px;
    animation: scroll-mouse 2s infinite;
}

@keyframes scroll-mouse {
    0%, 100% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.5;
        top: 20px;
    }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff2a2a;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ffe000, 2px 2px #ff2a2a;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    20% {
        clip: rect(54px, 9999px, 66px, 0);
    }
    40% {
        clip: rect(28px, 9999px, 16px, 0);
    }
    60% {
        clip: rect(42px, 9999px, 35px, 0);
    }
    80% {
        clip: rect(12px, 9999px, 14px, 0);
    }
    100% {
        clip: rect(88px, 9999px, 98px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    20% {
        clip: rect(79px, 9999px, 85px, 0);
    }
    40% {
        clip: rect(66px, 9999px, 11px, 0);
    }
    60% {
        clip: rect(17px, 9999px, 53px, 0);
    }
    80% {
        clip: rect(40px, 9999px, 27px, 0);
    }
    100% {
        clip: rect(78px, 9999px, 50px, 0);
    }
}

.btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #ff2a2a 0%, #cc2222 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn.btn-primary::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;
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #cc2222 0%, #ff2a2a 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.6);
}

.btn.btn-secondary {
    background: linear-gradient(135deg, #ffe000 0%, #ffd700 100%);
    color: #0b0b0b;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.btn.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn.btn-secondary:hover::before {
    left: 100%;
}

.btn.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffe000 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 224, 0, 0.6);
}

.section {
    padding: 100px 0;
}

.section .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
    animation: slideInUp 0.8s ease;
    text-shadow: 0 0 30px rgba(255, 42, 42, 0.3);
}

.section .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff2a2a, #ffe000, #ff2a2a);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.6);
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section .section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
}

.about {
    background: #1b1b1b;
}

.about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about .about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
}

.about .about-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about .fact-card {
    background: linear-gradient(135deg, #0b0b0b 0%, #1b1b1b 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about .fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.1), transparent);
    transition: left 0.5s;
}

.about .fact-card:hover::before {
    left: 100%;
}

.about .fact-card:hover {
    border-color: #ff2a2a;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 42, 42, 0.4);
}

.about .fact-card .fact-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #ff2a2a;
    margin-bottom: 10px;
}

.about .fact-card .fact-label {
    font-size: 16px;
    color: #cccccc;
}

.about .quote-box {
    background: linear-gradient(135deg, #0b0b0b 0%, #1b1b1b 100%);
    padding: 40px;
    border-left: 4px solid #ff2a2a;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.2);
    transition: all 0.3s;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff2a2a, #ffe000);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.quote-box:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(255, 42, 42, 0.3);
}

.about .quote-box .quote-text {
    font-family: 'Impact', sans-serif;
    font-size: 28px;
    color: #ffffff;
    font-style: italic;
}

.bio .bio-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio .bio-text {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 60px;
}

.bio .timeline {
    position: relative;
    padding-left: 40px;
}

.bio .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff2a2a;
}

.bio .timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
}

.bio .timeline-item:nth-child(1) { animation-delay: 0.1s; }
.bio .timeline-item:nth-child(2) { animation-delay: 0.2s; }
.bio .timeline-item:nth-child(3) { animation-delay: 0.3s; }
.bio .timeline-item:nth-child(4) { animation-delay: 0.4s; }
.bio .timeline-item:nth-child(5) { animation-delay: 0.5s; }
.bio .timeline-item:nth-child(6) { animation-delay: 0.6s; }
.bio .timeline-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bio .timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ff2a2a;
    border-radius: 50%;
    border: 4px solid #0b0b0b;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.6);
    transition: all 0.3s;
}

.bio .timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(255, 42, 42, 1);
}

.bio .timeline-item .timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #ff2a2a;
    margin-bottom: 10px;
}

.bio .timeline-item .timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.bio .timeline-item .timeline-content p {
    color: #cccccc;
}

.streams {
    background: linear-gradient(180deg, #0b0b0b 0%, #1b1b1b 100%);
    position: relative;
}

.streams::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(255, 224, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.streams .streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.streams .stream-card {
    background: linear-gradient(135deg, #0b0b0b 0%, #1b1b1b 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.streams .stream-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 42, 42, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.streams .stream-card:hover::after {
    width: 300px;
    height: 300px;
}

.streams .stream-card:hover {
    border-color: #ff2a2a;
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 42, 42, 0.5);
}

.streams .stream-card .stream-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streams .stream-card .stream-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.streams .stream-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #ff2a2a;
}

.streams .stream-card p {
    color: #cccccc;
}

.casinos .casino-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.casinos .filter-btn {
    padding: 10px 25px;
    background: #1b1b1b;
    color: #cccccc;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.casinos .filter-btn:hover,
.casinos .filter-btn.active {
    background: #ff2a2a;
    color: #ffffff;
    border-color: #ff2a2a;
}

.casinos .casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.casinos .casino-card {
    background: linear-gradient(135deg, #1b1b1b 0%, #0b0b0b 100%);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 224, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.casinos .casino-card:hover::before {
    opacity: 1;
}

.casinos .casino-card:hover {
    border-color: #ffe000;
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 224, 0, 0.5);
}

.casinos .casino-card .casino-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff2a2a;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.casinos .casino-card .casino-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
}

.casinos .casino-card .casino-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
}

.casinos .casino-card .casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casinos .casino-card .casino-info {
    text-align: center;
    margin-bottom: 20px;
}

.casinos .casino-card .casino-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.casinos .casino-card .casino-info .casino-description {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.casinos .casino-card .casino-info .casino-bonus {
    background: rgba(255, 224, 0, 0.1);
    color: #ffe000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.casinos .casino-card .casino-info .casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.casinos .casino-card .casino-info .casino-rating .star {
    color: #cccccc;
    font-size: 20px;
}

.casinos .casino-card .casino-info .casino-rating .star.active {
    color: #ffe000;
}

.casinos .casino-card .casino-info .casino-rating .rating-value {
    margin-left: 10px;
    color: #cccccc;
    font-weight: bold;
}

.casinos .casino-card .casino-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ffe000 0%, #ffd700 100%);
    color: #0b0b0b;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.casino-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.casino-btn:hover::before {
    width: 300px;
    height: 300px;
}

.casinos .casino-card .casino-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffe000 100%);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 224, 0, 0.5);
}


.contacts .contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacts .social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts .social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1b1b1b 0%, #0b0b0b 100%);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contacts .social-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff2a2a, #ffe000);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.contacts .social-link:hover::before {
    transform: scaleY(1);
}

.contacts .social-link:hover {
    border-color: #ff2a2a;
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.3);
    background: linear-gradient(135deg, #1b1b1b 0%, #252525 100%);
}

.contacts .social-link .social-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.contacts .social-link .social-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.contacts .social-link span:last-child {
    font-size: 18px;
    font-weight: 500;
}

.contacts .contact-form-wrapper h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: #ff2a2a;
}

.contacts .contact-form .form-group {
    margin-bottom: 20px;
}

.contacts .contact-form input,
.contacts .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #1b1b1b;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contacts .contact-form input:focus,
.contacts .contact-form textarea:focus {
    outline: none;
    border-color: #ff2a2a;
}

.contacts .contact-form input::placeholder,
.contacts .contact-form textarea::placeholder {
    color: #cccccc;
}

.contacts .contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: #0b0b0b;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #1b1b1b;
}

.footer p {
    color: #cccccc;
    margin-bottom: 20px;
}

.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .footer-links a:hover {
    color: #ff2a2a;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 968px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .about .about-content {
        grid-template-columns: 1fr;
    }
    
    .contacts .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .hero-decor-image,
    .hero-decor-image-2 {
        display: none !important;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    .hero-background {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .navbar .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1b1b1b;
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s;
        box-sizing: border-box;
    }
    
    .navbar .nav-menu.active {
        left: 0;
    }
    
    .navbar .nav-toggle {
        display: flex;
    }
    
    .hero {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .hero .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }
    
    .section {
        padding: 60px 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .casinos .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-decor-image,
    .hero-decor-image-2 {
        display: none !important;
    }
}

