/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #BFFF00;
    --secondary-color: #7BC800;
    --dark-bg: #0A0A0A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-green: #2D7A3E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-decline {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: #000;
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-decline {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-white);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
  
    padding: 20px 0;

}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_z5pggw0l/assets/images/hero-bcg.webp);
    background-position: center;
    background-size: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(191, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.02) 50px,
        rgba(255, 255, 255, 0.02) 100px
    );
    transform: rotate(45deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.8;
    width: 70%;
}

.hero-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.tournament-card {
    fill: rgba(255, 255, 255, 0.05);
stroke-width: 2px;
stroke: rgba(255, 255, 255, 0.07);
filter: drop-shadow(-16px 16px 34px rgba(0, 0, 0, 0.25));
backdrop-filter: blur(17.5px);
    padding: 18px;
    max-width: 250px;
    width: 100%;
    position: relative;
    z-index: 2;
  margin-right: -40px;
}

.romb {
    position: absolute;
    z-index: -1;
    top: -45%;
  left: 25%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -30px;
}

.tournament-month {
    font-size: 16px;
    margin-right: -30px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.tournament-image {
    width: 130px;
    overflow: hidden;
    margin-left: -30px;
}

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

.tournament-date {
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tournament-time {
    font-size: 24px;
    font-weight: 600;
   
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 15px 35px;
position: relative;
z-index: 4;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.hbtn {
    margin-left: -50px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.3);
}

.tournament-title {
    margin-top: 15px;
    font-size: 36px;
    font-weight: 600;
}

.hero-character {
    position: absolute;
    bottom: -16%;
    left: 50%;
    max-width: 400px;
    transform: translateX(-50%);
width: 100%;
    pointer-events: none;
}

.hero-character img {
    width: 100%;
    
}

/* Tournaments Section */
.tournaments {
    padding: 100px 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--secondary-color);
}

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

.tournament-item {
    padding: 24px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    transition: transform 0.3s ease;
}

.tournament-item:hover {
    transform: translateY(-10px);
}

.tournament-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.tournament-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    width: 80%;
}

.tournament-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60%;
}

.tournament-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Rewards Section */
.rewards {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(191, 255, 0, 0.02) 100%);
}

.rewards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.rewards-games {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.game-card {
    flex: 1;

    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

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

/* Community Section */
.community {
    padding: 100px 0;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-image {

    overflow: hidden;
    position: relative;
}

.community-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    z-index: 1;
}

.community-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(191, 255, 0, 0.03) 0%, transparent 100%);
    position: relative;
    background-image: url(/wp-content/themes/techfile_z5pggw0l/assets/images/cont.webp);
    background-size: cover;
    background-position: center;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.01) 100px,
        rgba(255, 255, 255, 0.01) 200px
    );
}

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.btn-send {
    background: var(--primary-color);
    color: #000;
    padding: 18px 50px;
    border: none;
 
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(15, 15, 15, 0.95);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 40px;
}

.footer-contacts h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contacts p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-social,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social a,
.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-social a:hover,
.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 14px;
}

.footer-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.games-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.game-item {
   width: 100%;
   flex: 0 1 44%;
box-shadow: -4px 4px 0 0 #F15D09;
transition: all 0.3s ease-in-out;
}

.game-item img {
    width: 100%;
    display: block;
}

.game-item:hover {
transform: scale(1.1);
box-shadow: -8px 8px 0 0 #99EE2D;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 70px;
    }

    .hero-character {
        bottom: 10%;
    }

    .tournament-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Burger Menu Display */
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 64px;
    }

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

     .hero-card {
        min-height: 300px;
    }

    .games-grid {
        flex-wrap: wrap;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .tournament-grid {
        grid-template-columns: 1fr;
    }

    .tournament-card {
        width: 100%;
    }

    .tournament-img {
        height: 80%;
    }

    .hero-character {
     
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

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

    .hero-description {
        width: 100%;
    }

   
    .tournament-date {
        font-size: 80px;
    }

    .tournament-title {
        font-size: 20px;
        width: 100%;
        text-align: center;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 12px;
    }

    .rewards-games {
        flex-direction: column;
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                