* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 15px 10%;
    border-bottom: 2px solid #d4af37;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.navbar > * {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #ffffff;
}

.header-center {
    align-items: center;
    display: flex;
    gap: 20px;
    color: #ffffff;
}

.header-center img {
    width: 100px;
    filter: brightness(0) invert(1);
    border-radius: 50%;
}

.header-right {
    display: flex;
    gap: 20px;
}

.header-right a {
    padding: 10px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 5px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.header-right a:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        padding: 15px 5%;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .header-center {
        gap: 10px;
    }

    .header-right a {
        padding: 5px 10px;
    }
}

.hero {
    padding-right: 5%;
    background: linear-gradient(135deg, #0d4d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-text {
    align-self: center;
    color: #ffffff;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    margin-top: 10px;
    font-size: 24px;
    color: #e8f5e8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero {
        background-image: url(../maps/hero-game.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        grid-template-columns: 1fr;
        padding-right: 0%;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 20px;
    }
}

.offers {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0d4d0d 0%, #1a1a1a 100%);
    color: white;
    position: relative;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.offers h1 {
    font-size: 3em;
    padding-bottom: 10px;
    background: linear-gradient(135deg, #05e796 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offers-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer {
    padding: 20px;
    display: flex;
    flex-direction: row;
    margin: 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.2);
    border: 2px solid #d4af37;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px 0 rgba(0,0,0,0.4), 0 8px 30px 0 rgba(212, 175, 55, 0.2);
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.part1, .part2, .part3, .part4 {
    display: flex;
    flex-direction: column;
}

.part1 {
    border-right: 1px solid #d4af37;
    background: linear-gradient(135deg, #05e796 0%, #f4d03f 100%);
    font-size: 40px;
    padding: 40px 30px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #1a1a1a;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.part1 p {
    margin: auto 0;
}

.part2 {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    position: relative;
    z-index: 1;
}

.offer-img {
    width: 200px;
    height: 100px;
    align-self: center;
    object-fit: contain;
    border-radius: 10px;
    padding: 10px;
}

.rating {
    padding: 20px 80px 0px;
}

.rating-numbers {
    font-size: 30px;
    margin: 0;
    font-weight: bold;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 5px 0;
}

.rating-stars img {
    width: 20px;
    height: 20px;
    filter: invert(85%) sepia(44%) saturate(1000%) hue-rotate(5deg) brightness(100%) contrast(90%);
}

.rating-stars .star-empty {
    opacity: 0.3;
}

.part3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 20px 80px;
    position: relative;
    z-index: 1;
    max-width: 450px;
    width: 100%;
}

.part3 h3 {
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    font-weight: 600;
}

.pros, .cons {
    flex: 1;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    color: #ccc;
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.pros-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.cons-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.part4 {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 550px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.welcome-bonus {
    font-size: 25px;
}

.welcome-bonus h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.play-now-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 8px 16px 0 rgba(212, 175, 55, 0.3), 0 6px 20px 0 rgba(212, 175, 55, 0.2);
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.play-now-btn img {
    width: 16px;
    height: 16px;
    filter: invert(0);
}

.play-now-btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px 0 rgba(231, 76, 60, 0.4), 0 8px 25px 0 rgba(231, 76, 60, 0.3);
}

.community-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.community-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #d4af37;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    filter: invert(85%) sepia(44%) saturate(1000%) hue-rotate(5deg) brightness(100%) contrast(90%);
}

.feature h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #d4af37;
}

@media only screen and (max-width: 1100px) {
    .rating, .part3, .part4 {
        padding: 20px 50px;
    }
}

@media only screen and (max-width: 900px) {
    .rating, .part3, .part4 {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 800px) {
    .rating, .part3, .part4 {
        padding: 0 15px;
    }

    .offer {
        flex-direction: column;
    }

    .part3 {
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .pros-list li, .cons-list li {
        font-size: 13px;
    }

    .part1 {
        display: none;
    }

    .part4 {
        border-radius: 0 0 20px 20px;
    }

    .part2 {
        width: 100%;
        margin-left: 0;
    }

    .offers-wrapper {
        width: 100%;
    }

    .part4 {
        padding: 30px 15px;
    }
}

.faq {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0d4d0d 0%, #1a1a1a 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #d4af37;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    border-color: #f2f2f2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.faq-question:hover h3 {
    color: #1a1a1a;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle img {
    width: 20px;
    height: 20px;
    filter: invert(85%) sepia(44%) saturate(1000%) hue-rotate(5deg) brightness(100%) contrast(90%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle img {
    transform: rotate(45deg);
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(90%) contrast(97%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 15px;
    }

    .faq h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

footer {
    padding: 20px 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 2px solid #d4af37;
    position: relative;
    color: white;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.footer-logo h4 {
    color: #d4af37;
    font-size: 1.2em;
    margin: 0;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: #d4af37;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-certifications a {
    display: inline-block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-certifications a:hover {
    opacity: 1;
}

.footer-certifications img {
    height: 40px;
    width: auto;
}

.footer-info {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #d4af37;
}

@media (max-width: 768px) {
    footer {
        padding: 20px 15px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-certifications {
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-certifications img {
        height: 35px;
        max-width: 70px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}