* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.stellar-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.stellar-header {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.stellar-header .stellar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stellar-logo {
    display: flex;
    align-items: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fff;
}

.stellar-logo img {
    width: 50px;
    margin-right: 10px;
}

.stellar-nav {
    display: flex;
    align-items: center;
    z-index: 99;
}

.stellar-menu {
    display: flex;
    gap: 20px;
}

.stellar-menu li {
    list-style: none;
}

.stellar-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.stellar-menu a:hover {
    color: #ff0;
}

.stellar-burger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .stellar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #ff0080;
        width: 200px;
        text-align: center;
        padding: 10px 0;
    }

    .stellar-menu.active {
        display: flex;
    }

    .stellar-burger {
        display: block;
    }
}

.hero-galaxy {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    padding: 100px 0;
}

.hero-galaxy::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,0,128,0.5) 0%, rgba(26,26,46,0) 60%);
    top: -50%;
    left: -50%;
    animation: galaxyMove 8s infinite linear;
}

@keyframes galaxyMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-galaxy .stellar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.hero-content {
    max-width: 50%;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    background: linear-gradient(90deg, #ff0, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.play-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.play-button:hover {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
}

.hero-image img {
    max-width: 300px;
}

@media (max-width: 768px) {
    .hero-galaxy .stellar-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image img {
        margin-top: 20px;
    }
}

.about-legend {
    padding: 100px 0;
    background: linear-gradient(120deg, #16213e, #1a1a2e);
}

.about-legend .stellar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-image img {
    max-width: 320px;
}

.about-content {
    max-width: 55%;
}

.about-content h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-benefits {
    list-style: none;
    padding: 0;
}

.about-benefits li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-benefits i {
    font-size: 1.5rem;
    color: #ff0080;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .about-legend .stellar-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-benefits li {
        justify-content: center;
    }

    .about-image img {
        margin-bottom: 20px;
    }
}

.stellar-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    text-align: center;
}

.stellar-features .stellar-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #ffeb3b;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1.1rem;
    color: #eee;
}

@media (max-width: 992px) {
    .stellar-features .stellar-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stellar-features .stellar-container {
        grid-template-columns: 1fr;
    }
}

.stellar-games {
    padding: 100px 0;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    text-align: center;
}

.stellar-games .stellar-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.game-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 1.5rem;
    font-family: 'Press Start 2P', cursive;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 15px;
}

.play-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.play-btn:hover {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
}

@media (max-width: 992px) {
    .stellar-games .stellar-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stellar-games .stellar-container {
        grid-template-columns: 1fr;
    }
}

.stellar-games {
    padding: 100px 0;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    text-align: center;
}

.stellar-games .stellar-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.game-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 1.5rem;
    font-family: 'Press Start 2P', cursive;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 15px;
}

.play-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.play-btn:hover {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
}

@media (max-width: 992px) {
    .stellar-games .stellar-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stellar-games .stellar-container {
        grid-template-columns: 1fr;
    }
}

.stellar-reviews {
    padding: 100px 0;
    background: linear-gradient(120deg, #16213e, #1a1a2e);
    text-align: center;
}

.stellar-reviews h2 {
    font-family: 'Press Start 2P', cursive;
    color: #ffeb3b;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.review-card {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.review-card h3 {
    font-size: 1.5rem;
    color: #ffeb3b;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 1.2rem;
    color: #eee;
}

@media (max-width: 768px) {
    .review-card {
        max-width: 90%;
        padding: 25px;
    }

    .review-card h3 {
        font-size: 1.3rem;
    }

    .review-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        max-width: 95%;
        padding: 20px;
    }
}

.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    text-align: center;
}

.why-choose-us h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.why-choose-us p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 40px;
}

.choose-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.choose-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: 0.3s;
    width: 30%;
}

.choose-card:hover {
    transform: translateY(-5px);
}

.choose-card i {
    font-size: 3rem;
    color: #ffeb3b;
    margin-bottom: 15px;
}

.choose-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 1.1rem;
    color: #eee;
}

@media (max-width: 768px) {
    .choose-cards {
        flex-direction: column;
    }
    
    .choose-card {
        width: 100%;
    }
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    text-align: center;
}

.faq-section h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-align: left;
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    color: #eee;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.stellar-disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff0000, #8b0000);
    text-align: center;
    color: #fff;
}

.stellar-disclaimer h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 20px;
}

.age-restriction {
    font-size: 3rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: #ffeb3b;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.age-restriction i {
    font-size: 2.5rem;
    color: #ffeb3b;
}

.age-restriction span {
    font-size: 2.5rem;
    font-weight: bold;
}

.stellar-disclaimer p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.warning-text {
    font-weight: bold;
    font-size: 1.3rem;
    color: #ffeb3b;
}

.stellar-disclaimer span {
    font-weight: bold;
    color: #ffeb3b;
}

.stellar-disclaimer a {
    color: #ffeb3b;
    text-decoration: underline;
    font-weight: bold;
}

.stellar-disclaimer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .stellar-disclaimer h2 {
        font-size: 1.5rem;
    }

    .age-restriction {
        font-size: 2.5rem;
        padding: 8px 15px;
    }

    .age-restriction i, .age-restriction span {
        font-size: 2rem;
    }

    .stellar-disclaimer p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .age-restriction {
        font-size: 2rem;
        padding: 6px 12px;
    }

    .age-restriction i, .age-restriction span {
        font-size: 1.8rem;
    }

    .stellar-disclaimer p {
        font-size: 1rem;
    }
}

.stellar-contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
    color: #fff;
}

.stellar-contacts h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 20px;
}

.stellar-contacts p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info i {
    color: #ffeb3b;
    margin-right: 8px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#contact-form textarea {
    height: 120px;
    resize: none;
}

#contact-form button {
    padding: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

#contact-form button:hover {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
}

#thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

.thank-you-content {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.thank-you-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffeb3b;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.thank-you-content button {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080);
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.thank-you-content button:hover {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
}

@media (max-width: 768px) {
    .stellar-contacts h2 {
        font-size: 1.5rem;
    }

    .stellar-contacts p {
        font-size: 1.1rem;
    }

    #contact-form {
        max-width: 90%;
    }
}

.stellar-footer {
    background: #111;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    max-width: 1240px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top h3 {
    font-size: 1.3rem;
    color: #ffeb3b;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer-menu ul, .footer-policy ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li, .footer-policy ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a, .footer-policy ul li a {
    color: #ffeb3b;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu ul li a:hover, .footer-policy ul li a:hover {
    color: #ff0080;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-menu ul, .footer-policy ul {
        display: inline-block;
    }
}

#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 999;
}

#cookie-consent button {
    background: #ff8c00;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#cookie-consent button:hover {
    background: #ff0080;
}

#age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-content {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.age-content h2 {
    font-size: 1.4rem;
    color: #ffeb3b;
    margin-bottom: 15px;
}

.age-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.age-content button {
    background: #ff8c00;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.age-content button:hover {
    background: #ff0080;
}

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff0080;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

#scroll-top:hover {
    background: #ff8c00;
}

@media (max-width: 768px) {
    #cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    #cookie-consent button {
        margin-top: 10px;
    }

    #scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}