* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Oxanium", sans-serif;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

body {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 87, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 87, 51, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0d0d0d 100%);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: #ff5733;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

ul {
    list-style: none;
}

h1, h2 {
    font-family: "Audiowide", sans-serif;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 87, 51, 0.5);
}

p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
}

h3 {
    font-size: 28px;
    color: #ff5733;
    text-shadow: 0 0 8px rgba(255, 87, 51, 0.3);
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 25px 50px;
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-bottom: 2px solid #ff5733;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff5733, transparent);
}

header h1 {
    font-size: 42px;
    background: linear-gradient(45deg, #ffffff, #ff5733);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-logo img {
    width: 50px;
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.navigation-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.nav-item {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: #ffffff;
    background: linear-gradient(45deg, rgba(255, 87, 51, 0.2), rgba(255, 87, 51, 0.1));
    border-color: #ff5733;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.3);
}

.hero {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 50px 20px 30px;
    background: 
        radial-gradient(ellipse at center, rgba(255, 87, 51, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
}

.hero-wrapper {
    max-width: 800px;
    position: relative;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff5733, transparent);
}

.hero-wrapper h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff5733 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-wrapper p {
    font-size: 22px;
    color: #cccccc;
}

.offers {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px 20px;
    background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
}

.offer {
    display: flex;
    width: 85%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    margin: 15px 0;
    border: 1px solid #333333;
    border-left: 4px solid #ff5733;
    position: relative;
    transition: all 0.3s ease;
}

.offer-img {
    min-width: 280px;
    margin-right: 30px;
    border: 2px solid #333333;
    transition: border-color 0.3s ease;
}

@media (max-width: 1200px) {
    .offer-img {
        min-width: unset;
        width: 200px;
    }
}

.offer:hover .offer-img {
    border-color: #ff5733;
}

.round {
    border-radius: 15px;
}

.name {
    font-size: 36px;
    color: #ff5733;
    text-shadow: 0 0 10px rgba(255, 87, 51, 0.3);
}

.rating-stars {
    padding-bottom: 15px;
    font-size: 28px;
    color: #ffaa00;
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.5);
}

.welcome-bonus {
    font-size: 24px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 87, 51, 0.2), transparent);
    padding: 10px;
    border-left: 3px solid #ff5733;
    margin: 15px 0;
}

.offer-text {
    padding-bottom: 25px;
    color: #cccccc;
}

.play-btn {
    color: #000000;
    background: linear-gradient(45deg, #ff5733, #ff7700);
    padding: 15px 30px;
    border-radius: 0;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: linear-gradient(45deg, #ee2c00, #ff8417);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 87, 51, 0.3);
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
}

.about-wrapper {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #333333;
    border-top: 4px solid #ff5733;
    position: relative;
}

@media (max-width: 1200px) {
    .about {
        padding: 20px 20px;
    }

    .about-wrapper {
        padding: 20px;
    }
}

.about-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff5733, transparent, #ff5733);
}

.about-img {
    width: 35%;
    border: 2px solid #ff5733;
    border-radius: 10px;
}

.about-text {
    padding: 30px;
    flex: 1;
}

.about-text h1 {
    font-size: 44px;
    padding-bottom: 25px;
    background: linear-gradient(45deg, #ffffff, #ff5733);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 20px;
    padding-bottom: 15px;
    color: #cccccc;
    line-height: 1.7;
}

.orange {
    color: #ff5733;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 87, 51, 0.3);
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
    border-top: 2px solid #ff5733;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff5733, transparent);
}

.logo h1 {
    font-size: 36px;
    background: linear-gradient(45deg, #ffffff, #ff5733);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.logo p {
    color: #888888;
    font-size: 16px;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu-element a {
    color: #cccccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-menu-element a:hover {
    color: #ff5733;
    transform: translateX(5px);
}

.legal p {
    text-align: center;
    color: #ff5733;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-img {
    width: 60px;
    height: 60px;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.legal-img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.age-logo {
    filter: grayscale(100%) brightness(0.8) sepia(100%) hue-rotate(10deg) saturate(2);
}

/* Responsive Design */
@media only screen and (max-width: 900px) {
    .about-text p {
        font-size: 18px;
    }

    footer {
        flex-direction: column;
        gap: 30px;
    }

    .logo, .footer-menu {
        text-align: center;
    }

    header {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    header h1 {
        font-size: 38px;
    }

    .navigation-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-list {
        justify-content: center;
    }
}

@media only screen and (max-width: 800px) {
    .offer {
        flex-direction: column;
        text-align: center;
    }

    .offer-img {
        min-width: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-img {
        width: 80%;
        margin-bottom: 20px;
    }

    .tip {
        width: 95%;
    }

    .hero-wrapper h1 {
        font-size: 36px;
    }

    .hero-wrapper p {
        font-size: 18px;
    }
}

.rules {
    display: flex;
    flex-direction: column;
    padding: 20px 10%;
    gap: 20px;
}