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

:root {
    --primary-color: #e63946;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --header-bg: #3a3a3a;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #1a1a1a;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 800px;
    width: calc(100% - 40px);
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    background: #f5f5f5;
    border: 4px solid var(--primary-color);
    border-radius: 35px;
    padding: 50px 60px;
    text-align: center;
}

.cookie-content h2 {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cookie-content p {
    color: #2c3e50;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cookie-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 60px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #d32f3e;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: #e8e8e8;
    color: #2c3e50;
}

.cookie-btn.decline:hover {
    background: #d8d8d8;
}

/* Header */
.header {

    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1F2937;
background: rgba(206, 206, 206, 0.28);
backdrop-filter: blur(7.349999904632568px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo img {
    width: 45px;
    height: 45px;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: url(/wp-content/themes/ozalurian/assets/images/bg1.png);
    background-size: cover;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

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

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 20px 55px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;

    border-radius: 5px;
border: 3px solid #FFF;
background: linear-gradient(180deg, #FE3047 0%, #981D2A 100%);
}

.btn:hover {
    background: transparent;
    transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: url(/wp-content/themes/ozalurian/assets/images/bg2.png);
    background-size: cover;
}

.section-title {
    text-align: center;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.features-wrapper {
    display: flex;
    gap: 0;
    position: relative;
    align-items: flex-start;
}

.features-divider {
    width: 4px;
    background: var(--primary-color);
    align-self: stretch;
    flex-shrink: 0;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.features-left {
    padding-right: 80px;
    text-align: right;
}

.features-right {
    padding-left: 80px;
    text-align: left;
}

.feature-item {
    position: relative;
}

.features-left .feature-item::after {
    content: '';
    position: absolute;
    right: -82px;
    top: 20px;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.features-right .feature-item::after {
    content: '';
    position: absolute;
    left: -82px;
    top: 20px;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.feature-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* About Section */
.about {
    padding: 100px 0;
    background: url(/wp-content/themes/ozalurian/assets/images/bg3.png);
    background-size: cover;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

/* Games Section */
.games {
    padding: 100px 0;
    background: url(/wp-content/themes/ozalurian/assets/images/bg4.png);
    background-size: cover;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 40px;
    align-items: center;
}

.game-card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-15px);
}

.game-card:nth-child(1),
.game-card:nth-child(3) {
    border: 3px solid #555;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.game-title {
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 56px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #000000;
    text-align: center;
}

.cta h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.cta-text {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.7);

    border-radius: 5px;
border: 3px solid #FFF;
background: linear-gradient(180deg, #FE3047 0%, #981D2A 100%);
box-shadow: 0 0 60.7px 0 #FE3047;
}

/* Contacts Section */
.contacts {
    padding: 80px 0 60px;
    background: var(--bg-darker);
}

.contacts h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-item .icon {
    font-size: 22px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    padding: 50px 0 25px;
    border-radius: 50px 50px 0 0;

    border-radius: 106px 106px 0 0;
background: linear-gradient(180deg, #FE3047 0%, #981D2A 100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
}

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

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 20px;
}



.social-icon:hover {
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom p {
    font-size: 15px;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 52px;
    }
    
    .cta h2 {
        font-size: 52px;
    }
    
    .contacts h2 {
        font-size: 52px;
    }
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(58, 58, 58, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.3s ease;
    }

    .nav.active {
        left: 0;
    }

    .burger {
        display: flex;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        max-width: 100%;
    }

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

    .hero-image {
        justify-content: center;
    }

    .features-wrapper {
        flex-direction: column;
    }

    .features-divider {
        display: none;
    }

    .features-left,
    .features-right {
        text-align: center;
        padding: 0;
    }

    .features-left .feature-item::after,
    .features-right .feature-item::after {
        display: none;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 42px;
    }

    .cta h2 {
        font-size: 42px;
    }

    .contacts h2 {
        font-size: 42px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

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

    .btn {
        padding: 16px 40px;
        font-size: 18px;
    }

    .cookie-content {
        padding: 35px 25px;
    }

    .cookie-content h2 {
        font-size: 28px;
    }

    .cookie-content p {
        font-size: 15px;
    }

    .cookie-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        font-size: 18px;
        padding: 16px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .feature-item h3 {
        font-size: 22px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .about-text p {
        font-size: 16px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .contacts h2 {
        font-size: 32px;
    }

    .contact-item {
        font-size: 15px;
    }

    .game-title {
        font-size: 32px;
        top: 25px;
        left: 25px;
    }
}





/* Games Catalog Section */
.games-catalog {
    padding: 100px 0;
    background: #1a1a1a;
}

.catalog-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.5px;

    color: #FFF;
text-shadow: 3px 1px 0 #FE3047;
font-family: Poppins;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 70px; /* 109.375% */
}

.catalog-description {
    max-width: 1100px;
    margin-bottom: 60px;
}

.catalog-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.catalog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
    aspect-ratio: 1;
}

.catalog-card:hover {
    transform: translateY(-10px);
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-game-title {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    font-style: italic;
}

/* Responsive for Games Catalog */
@media (max-width: 968px) {
    .catalog-title {
        font-size: 42px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .catalog-game-title {
        font-size: 32px;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 600px) {
    .catalog-title {
        font-size: 32px;
    }
    
    .catalog-description p {
        font-size: 15px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-game-title {
        font-size: 28px;
        top: 15px;
        left: 15px;
    }
}


.catalog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
    aspect-ratio: 1;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.catalog-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.catalog-card:hover {
    transform: translateY(-10px);
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-game-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.catalog-card:hover .catalog-game-title {
    opacity: 1;
}






/* Game Detail Page */
.game-detail {
    padding: 80px 0;
    background: #1a1a1a;
}

.game-detail-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    color: #FFF;
text-shadow: 3px 1px 0 #FE3047;
font-family: Poppins;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 70px; /* 109.375% */
}

.game-detail-description {
    margin-bottom: 50px;
}

.game-detail-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.game-detail-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
}

.game-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.game-detail-overlay {
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 56px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    font-style: italic;
}

.game-detail-cta {
    text-align: center;
}

.btn-play {
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.6);
}

/* Why Play Section */
.why-play {
    padding: 80px 0;

}

.why-play-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
    color: #FFF;
text-align: center;
text-shadow: 3px 1px 0 #FE3047;
font-family: Poppins;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 70px; /* 109.375% */
}

.why-play-list {
    max-width: 900px;
    margin: 0 auto;
    /* list-style: none; */
    padding: 0;
}

.why-play-list li {
    font-size: 16px;
    line-height: 1.8;

    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

/* .why-play-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
} */

.why-play-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive for Game Detail Page */
@media (max-width: 968px) {
    .game-detail-title {
        font-size: 48px;
    }

    .why-play-title {
        font-size: 38px;
    }

    .game-detail-overlay {
        font-size: 42px;
        top: 25px;
        left: 25px;
    }
}

@media (max-width: 600px) {
    .game-detail-title {
        font-size: 36px;
    }

    .game-detail-description p {
        font-size: 15px;
    }

    .why-play-title {
        font-size: 28px;
    }

    .why-play-list li {
        font-size: 15px;
        padding-left: 25px;
    }

    .game-detail-overlay {
        font-size: 32px;
        top: 20px;
        left: 20px;
    }
}