:root {
    --bg-color: #040b11;
    --accent-color: #21e786;
    --text-color: #c2c3c5;
    --heading-color: #fff;
    --footer-bg: #121d27;
}

#errorMsg{
    text-align: center;
}

#logout2{
    display: none;
}

#logout2.active{
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color) url('../images/pattern.png');
    background-size: 130px;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.core-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.core-logo{
    line-height: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.core-logo:active{
    text-decoration: none;
}

.core-logo img{
    margin-right: 6px;
    width: 42px;
}

.core-logo span{
    font-family: 'Bakbak One', cursive;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

.core-nav {
    display: flex;
    align-items: center;
}

.core-menu {
    display: flex;
    list-style: none;
}

.core-menu li {
    margin-left: 30px;
}

.core-menu a {
    color: #fff;
    font-family: 'Bakbak One', cursive;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;

}

.core-menu a:hover {
    color: var(--accent-color);
}

.core-auth {
    display: flex;
    margin-left: 40px;
}

.core-btn {
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Bakbak One', cursive;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;

}

.core-btn-login {
    color: #fff;
    background-color: #141b22;
    border: 1px solid #141b22;
    margin-right: 15px;
}

.core-btn-login:hover {
    background-color: rgba(33, 231, 134, 0.1);
}

.core-btn-reg {
    color: var(--bg-color);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.core-btn-reg:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.core-mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.core-banner {
    padding: 120px 0;
    display: flex;
    align-items: center;
    background: url('../images/slider1.jpg') center no-repeat;
    background-size: cover;
}

.core-banner-content {
    flex: 1;
    padding-right: 40px;
}

.core-banner-subtitle {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.core-banner-title {
    font-family: 'Bakbak One', cursive;
    font-size: 48px;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.core-banner-title span {
    color: var(--accent-color);
}

.core-banner-text {
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    max-width: 700px;
    width: 100%;
}

.core-banner-btns {
    display: flex;
}

.core-btn-primary {
    color: var(--bg-color);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.core-btn-primary:hover {
    color: var(--accent-color);
    background-color: transparent;
}

.core-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: 0.5s;
}

.core-btn-primary:hover::before {
    left: 100%;
}

.core-btn-secondary {
    color: var(--accent-color);
    background-color: transparent;
    border: 1px solid var(--accent-color);
}

.core-btn-secondary:hover {
    background-color: rgba(33, 231, 134, 0.1);
}

.core-banner-image {
    flex: 1;
    text-align: center;
}

.core-banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.core-about {
    padding: 80px 0;
    text-align: center;
}

.core-section-title {
    font-family: 'Bakbak One', cursive;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.core-section-title span {
    color: var(--accent-color);
}

.core-section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
}

.core-section-subtitle.left{
    margin: 0 0 50px 0;
}

.core-section-subtitle.full{
    max-width: 100%;
}

.core-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.core-stat-item {
    text-align: center;
}

.core-stat-number {
    font-family: 'Bakbak One', cursive;
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.core-stat-text {
    font-size: 18px;
    color: var(--text-color);
}


.core-features {
    padding: 80px 0;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.core-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.core-feature-title {
    font-family: 'Bakbak One', cursive;
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}


.core-games {
    padding: 80px 0;
}

.core-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.core-games-categories {
    display: flex;
}

.core-games-category {
    padding: 8px 15px;
    margin-right: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.core-games-category.active {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.core-games-category:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
}

.core-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-game-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.core-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.core-game-content {
    padding: 20px;
}

.core-game-title {
    font-family: 'Bakbak One', cursive;
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.core-game-text {
    margin-bottom: 15px;
    font-size: 14px;
}

.core-game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.core-game-rating {
    color: var(--accent-color);
    font-weight: 600;
}

.core-game-btn {
    padding: 8px 15px;
    font-size: 14px;
}


.core-pricing {
    padding: 80px 0;
    text-align: center;
}

.core-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-price-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.core-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-price-card.popular::before {
    content: 'Popüler';
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.core-price-title {
    font-family: 'Bakbak One', cursive;
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.core-price-amount {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.core-price-amount span {
    font-size: 16px;
    color: var(--text-color);
}

.core-price-features {
    list-style: none;
    margin-bottom: 30px;
}

.core-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.core-price-features li:last-child {
    border-bottom: none;
}


.core-testimonials {
    padding: 80px 0;
    text-align: center;
}

.core-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.core-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.core-testimonial-author {
    display: flex;
    align-items: center;
}

.core-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.core-testimonial-name {
    font-family: 'Bakbak One', cursive;
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.core-testimonial-role {
    font-size: 14px;
    color: var(--accent-color);
}


.core-faq {
    padding: 80px 0;
}

.core-faq-grid {
    margin: 50px auto 0;
}

.core-faq-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
}

.core-faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.core-faq-question:hover {
    color: var(--accent-color);
}

.core-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.core-faq-item.active .core-faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.core-faq-toggle {
    transition: transform 0.3s;
}

.core-faq-item.active .core-faq-toggle {
    transform: rotate(180deg);
}


.core-footer {
    background-color: #000;
    padding: 80px 0 30px;
}

.core-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: space-between;
}



.core-footer-logo {
    font-family: 'Bakbak One', cursive;
    font-size: 24px;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;

}

.core-footer-about {
    max-width: 400px;
    width: 100%;
    margin-bottom: 20px;
}

.core-footer h3 {
    font-family: 'Bakbak One', cursive;
    font-size: 18px;
    color: var(--heading-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.core-footer-links ul {
    list-style: none;
}

.core-footer-links li {
    margin-bottom: 10px;
}

.core-footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.core-footer-links a:hover {
    color: var(--accent-color);
}

.core-footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    width: 190px;
}

.core-footer-newsletter form{
    display: flex;
    align-items: center;
}

.core-footer-newsletter form button{
    white-space: nowrap;
    padding: 0 8px;
    height: 44px;
}

.core-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.core-footer-copyright {
    font-size: 14px;
}

.core-footer-legal {
    display: flex;
}

.core-footer-legal a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.core-footer-legal a:hover {
    color: var(--accent-color);
}


.core-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.core-modal.active {
    opacity: 1;
    visibility: visible;
}

.core-modal-content {
    background-color: var(--bg-color);
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.core-modal.active .core-modal-content {
    transform: translateY(0);
}

.core-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s;
}

.core-modal-close:hover {
    color: var(--accent-color);
}

.core-modal-title {
    font-family: 'Bakbak One', cursive;
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
}

.core-modal-title span {
    color: var(--accent-color);
}

.core-form-group {
    margin-bottom: 20px;
}

.core-form-input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.core-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.core-form-submit {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

.core-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.core-form-footer a {
    color: var(--accent-color);
    text-decoration: none;
}


    .core-breadcrumbs {
        padding: 20px 0;
        background-color: rgba(255, 255, 255, 0.03);
    }
    
    .core-breadcrumbs-content {
        display: flex;
        align-items: center;
        color: var(--text-color);
    }
    
    .core-breadcrumbs-content a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .core-breadcrumbs-content a:hover {
        color: var(--heading-color);
    }
    
    .core-breadcrumbs-content i {
        margin: 0 10px;
        color: var(--text-color);
    }
    
    
    .core-page-banner {
        padding: 60px 0;
        text-align: center;
        background: url('../images/breadcrumbs.jpg') center no-repeat;
        background-size: cover;
    }
    
    .core-page-title {
        font-family: 'Bakbak One', cursive;
        font-size: 36px;
        color: var(--heading-color);
        margin-bottom: 15px;
    }
    
    .core-page-title span {
        color: var(--accent-color);
    }
    
    .core-page-subtitle {
        max-width: 600px;
        margin: 0 auto;
    }
    
    
    .core-contact-info {
        padding: 60px 0;
    }
    
    .core-contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .core-contact-card {
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .core-contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .core-contact-icon {
        font-size: 40px;
        color: var(--accent-color);
        margin-bottom: 20px;
    }
    
    .core-contact-title {
        font-family: 'Bakbak One', cursive;
        font-size: 20px;
        color: var(--heading-color);
        margin-bottom: 10px;
    }
    
    .core-contact-text {
        margin-bottom: 20px;
    }
    
    .core-contact-link {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .core-contact-link:hover {
        color: var(--heading-color);
    }
    
    
    .core-contact-form-section {
        padding: 60px 0 80px;
    }
    
    .core-contact-form-container {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }
    
    .core-contact-form {
        margin-top: 40px;
    }
    
    .core-form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .core-form-row .core-form-group {
        flex: 1;
    }
    
    .core-form-input {
        width: 100%;
        padding: 12px 15px;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        color: var(--text-color);
        font-family: 'Poppins', sans-serif;
    }
    
    .core-form-input:focus {
        outline: none;
        border-color: var(--accent-color);
    }
    
    .core-form-textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    @media (max-width: 768px) {
        .core-contact-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .core-form-row {
            flex-direction: column;
            gap: 0;
        }
    }


    
    .core-about-section {
        padding: 80px 0;
    }
    
    .core-about-section-1 {
        background-color: rgba(255, 255, 255, 0.02);
    }
    
    .core-about-section-2 {
        background-color: rgba(33, 231, 134, 0.03);
    }
    
    .core-about-section-3 {
        background-color: rgba(255, 255, 255, 0.02);
    }
    
    .core-about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    .core-about-text {
        flex: 1;
    }
    
    .core-about-image {
        flex: 1;
    }
    
    .core-about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .core-about-list {
        list-style: none;
        margin-top: 20px;
    }
    
    .core-about-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .core-about-list i {
        color: var(--accent-color);
        margin-right: 10px;
        font-size: 20px;
    }
    
    
    .core-about-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 80px;
    }
    
    .core-stat-card {
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .core-stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .core-stat-number {
        font-family: 'Bakbak One', cursive;
        font-size: 36px;
        color: var(--accent-color);
        margin-bottom: 10px;
    }
    
    .core-stat-text {
        font-size: 18px;
        color: var(--text-color);
    }
    
    
    .core-about-team {
        margin-top: 80px;
        text-align: center;
    }
    
    .core-team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    
    .core-team-card {
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 30px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .core-team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .core-team-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
    }
    
    .core-team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .core-team-name {
        font-family: 'Bakbak One', cursive;
        font-size: 20px;
        color: var(--heading-color);
        margin-bottom: 5px;
    }
    
    .core-team-role {
        color: var(--accent-color);
        font-size: 14px;
    }
    
    @media (max-width: 1024px) {
        .core-about-content {
            flex-direction: column;
        }
        
        .core-about-section-2 .core-about-content {
            flex-direction: column-reverse;
        }
        
        .core-team-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .core-about-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .core-about-stats {
            grid-template-columns: 1fr;
        }
        
        .core-team-grid {
            grid-template-columns: 1fr;
        }
    }

.core-cookie-popup {
        position: fixed;
        bottom: 20px;
        left: 20px;
        max-width: 380px;
        background-color: #1a2635;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        padding: 20px;
        z-index: 9999;
        transform: translateY(150%);
        transition: transform 0.4s ease-out;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .core-cookie-popup.show {
        transform: translateY(0);
    }
    
    .core-cookie-title {
        font-family: 'Bakbak One', cursive;
        color: #fff;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .core-cookie-text {
        color: #c2c3c5;
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .core-cookie-options {
        margin-bottom: 20px;
    }
    
    .core-cookie-option {
        margin-bottom: 15px;
        padding: 12px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    
    .core-cookie-option-header {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }
    
    .core-cookie-option-header input {
        margin-right: 10px;
        accent-color: #21e786;
    }
    
    .core-cookie-option-header label {
        color: #fff;
        font-weight: 500;
        cursor: pointer;
    }
    
    .core-cookie-option-desc {
        color: #8b8d90;
        font-size: 12px;
        line-height: 1.4;
        padding-left: 22px;
    }
    
    .core-cookie-buttons {
        display: flex;
        gap: 10px;
    }
    
    .core-cookie-btn {
        flex: 1;
        padding: 10px 15px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-family: 'Poppins', sans-serif;
    }
    
    .core-cookie-accept {
        background-color: #21e786;
        color: #121d27;
    }
    
    .core-cookie-accept:hover {
        background-color: #1ad178;
    }
    
    .core-cookie-reject {
        background-color: transparent;
        color: #c2c3c5;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .core-cookie-reject:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    @media (max-width: 480px) {
        .core-cookie-popup {
            left: 10px;
            right: 10px;
            max-width: none;
            bottom: 10px;
        }
    }


  
    
    
    .core-game-categories {
        padding: 80px 0;
        background-color: #121d27;
    }
    
    .core-categories-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .core-category-card {
        background-color: #1a2635;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        text-decoration: none;
    }
    
    .core-category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .core-category-icon {
        font-size: 40px;
        color: #21e786;
        margin-bottom: 20px;
    }
    
    .core-category-title {
        font-family: 'Bakbak One', cursive;
        color: #fff;
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    .core-category-count {
        color: #c2c3c5;
        font-size: 14px;
    }
    
    @media (max-width: 1024px) {

        
        .core-categories-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {

        
        .core-categories-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
    }


  .core-simple-order {
    padding: 80px 0;
    background-color: #121d27;
  }
  
  .core-order-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a2635;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  
  .core-order-form {
    display: block;
  }
  
  .core-form-group {
    margin-bottom: 20px;
  }
  
  .core-form-group label {
    display: block;
    color: #c2c3c5;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .core-form-input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  .core-form-input:focus {
    outline: none;
    border-color: #21e786;
  }
  
  select.core-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c2c3c5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
  }
  
  .core-form-checkbox {
    display: flex;
    align-items: center;
    margin: 25px 0;
  }
  
  .core-form-checkbox input {
    margin-right: 10px;
    accent-color: #21e786;
  }
  
  .core-form-checkbox label {
    color: #8b8d90;
    font-size: 14px;
  }
  
  .core-form-checkbox a {
    color: #21e786;
    text-decoration: none;
  }
  
  .core-form-checkbox a:hover {
    text-decoration: underline;
  }
  
  .core-order-form .core-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
  
  
  .core-order-success {
    text-align: center;
    padding: 20px;
    display: none;
  }
  
  .core-order-success i {
    font-size: 60px;
    color: #21e786;
    margin-bottom: 20px;
  }
  
  .core-order-success h3 {
    font-family: 'Bakbak One', cursive;
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
  }
  
  .core-order-success p {
    color: #c2c3c5;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .core-order-success .core-btn {
    max-width: 250px;
    margin: 0 auto;
  }








.core-privacy-content {
        padding: 60px 0;
    }
    
    .core-text-section {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .core-text-section h2 {
        font-family: 'Bakbak One', cursive;
        color: #fff;
        margin: 30px 0 15px;
        font-size: 22px;
    }
    
    .core-text-section h2 span {
        color: #21e786;
    }
    
    .core-text-section p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .core-text-section ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .core-text-section li {
        margin-bottom: 8px;
    }
    
    .core-text-section strong {
        color: #fff;
    }
    
    .core-text-section a {
        color: #21e786;
        text-decoration: none;
    }
    
    .core-text-section a:hover {
        text-decoration: underline;
    }




















@media(max-width: 1199px){
    .wrap{
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .core-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-price-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .core-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .core-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        z-index: 999;
    }
    
    .core-menu.active {
        right: 0;
    }
    
    .core-menu li {
        margin: 0 0 20px 0;
    }
    
    .core-mobile-menu {
        display: block;
        z-index: 1000;
    }
    
    .core-auth {
        margin-left: 0;
    }
    
    .core-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    
    .core-banner-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .core-banner-btns {
        justify-content: center;
    }
    
    .core-stats {
        flex-direction: column;
    }
    
    .core-stat-item {
        margin-bottom: 30px;
    }
    
    .core-stat-item:last-child {
        margin-bottom: 0;
    }
    
    .core-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .core-price-card:last-child {
        grid-column: span 1;
        max-width: 100%;
        width: 100%;
    }
    
    .core-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .core-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .core-footer-legal {
        margin-top: 20px;
    }
    
    .core-footer-legal a {
        margin: 0 10px;
    }
    .core-auth{
        display: none;
    }
    .core-header{
        padding: 12px 0px!important;
    }
}

@media (max-width: 576px) {
    .core-features-grid {
        grid-template-columns: 1fr;
    }
    
    .core-games-grid {
        grid-template-columns: 1fr;
    }
    
    .core-games-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .core-games-categories {
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .core-games-category {
        margin-bottom: 10px;
    }
    
    .core-footer-content {
        grid-template-columns: 1fr;
    }
    
    .core-modal-content {
        padding: 30px 20px;
    }
}