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

body {
    font-family: 'Roboto', sans-serif;
    color: #f8f9fa;
    background-color: #0a1628;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
p {
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (min-width: 1024px) {
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.8rem; }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #0d2240 30%, #142d4c 60%, #1a3a5c 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('photos/uploads/mostbet-hero-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0) 0%,
        rgba(10, 22, 40, 0.2) 50%,
        rgba(10, 22, 40, 0.6) 80%,
        rgba(10, 22, 40, 0.95) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo img {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 0;
}

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

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-style: italic;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 420px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1.1rem 3.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 107, 53, 0.7), 0 0 70px rgba(255, 107, 53, 0.4);
        transform: scale(1.03);
    }
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -60%;
    width: 60%;
    height: 160%;
    transform: rotate(20deg);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(255, 107, 53, 0.45);
    color: #ffffff;
}

.hero-cta:hover::before {
    animation: hero-cta-shine 0.9s ease;
}

@keyframes hero-cta-shine {
    0% { left: -60%; }
    100% { left: 120%; }
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('photos/uploads/mostbet-hero-girl.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    filter: drop-shadow(-20px 10px 40px rgba(0, 0, 0, 0.5));
}

img.logo {
    width: 200px;
}

@media screen and (min-width: 1200px) {
    .hero-text {
        max-width: 620px;
    }
    .hero-text h1 {
        font-size: clamp(2.4rem, 4.6vw, 4.2rem);
        letter-spacing: -0.03em;
    }
}

@media screen and (max-width: 991px) {
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        margin-bottom: 4rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 0;
    }
    
    .hero-text {
        max-width: 100%;
        position: relative;
        z-index: 5;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 50vh;
        margin-top: 2rem;
    }
    
    .hero-image::before {
        background-position: top center;
    }
}

@media screen and (max-width: 576px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        padding: 0.85rem 2rem;
        font-size: 1.2rem;
    }
    
    .hero-image {
        height: 45vh;
        margin-top: 0;
    }
}

.off-canvas {
    background-color: #0f3460;
    color: #f8f9fa;
    z-index: 1001;
}
.off-canvas .vertical.menu li > a {
    color: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.off-canvas .vertical.menu li > a:hover {
    background-color: #1a1a2e;
}
.off-canvas .button {
    margin: 1rem;
}
.off-canvas-content {
    min-height: auto;
}


section:not(.hero-section) {
    padding: 4rem 0;
    background-color: #0a1628;
    color: #f8f9fa;
}
section:not(.hero-section):nth-of-type(even) {
    background-color: #0d1e33;
}
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
section p {
    color: rgba(255, 255, 255, 0.8);
}

