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

:root {
    --cyan: rgba(38, 253, 230, 1);
    --blue: rgba(106, 165, 253, 1);
    --dark-bg: rgba(19, 46, 55, 1);
    --darker-bg: #0F1419;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #00E5CC 0%, #5B9FE3 100%);
    padding: 32px;
    border-radius: 30px;
    max-width: 90%;
    width: 800px;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h2 {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--darker-bg);
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--darker-bg);
}

.cookie-btn {
    width: 100%;
    padding: 24px;
    border: none;
    border-radius: 50px;
    line-height: 1.2;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn.accept {
    background: var(--darker-bg);
    color: var(--text-white);
    margin-bottom: 8px;
}

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

.cookie-btn.refuse {
    background: rgba(255, 255, 255, 0.9);
    color: var(--darker-bg);
}

.cookie-btn.refuse:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: linear-gradient(135deg, #00E5CC 0%, #5B9FE3 100%);
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--darker-bg);
    text-decoration: none;
}

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

/* Navigation */
.navbar {
    background: var(--dark-bg);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--cyan);
}

.btn-play {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    color: var(--text-white);
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 204, 0.3);
}

/* Hero Section */
.hero {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 60px;
    line-height: 1.2;
}

.hero-title span {
  color: rgba(58, 229, 237, 1);
}

.highlight {
    background:rgba(58, 229, 237, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 50px;
    padding: 16px;
    color: #000;
}

.arrow-icon {
    width: 50px;
    height: auto;
}

.hero-content {
    position: relative;
}

.btn-adventure {
    background: rgba(26, 106, 114, 1);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.stats-box {
    background: var(--cyan);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    max-width: 250px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--darker-bg);
}

.stat-item p {
    font-size: 14px;
    color: var(--darker-bg);
}

.hero-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-start {
  position: absolute;
  bottom: 20px;
  left: 50%;
  text-decoration: none;
  transform: translateX(-50%);
  background: linear-gradient(99.47deg, #26FDE6 0%, #6AA5FD 113.32%);
  width: max-content;
  max-width: 100%;
    color: var(--darker-bg);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

@media (max-width: 768px){
    .btn-start {
      bottom: -10px;
    }
}

.btn-start:hover {
    box-shadow: 0 10px 20px rgba(0, 229, 204, 0.3);
}

.hero-right {
    position: relative;
}
.hero-img {
  width: 100%;
  object-fit: contain;
  height: auto;
}

.

.character-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat {
    background: var(--cyan);
    color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat img {
    width: 20px;
    height: 20px;
}

/* Advantages Section */
.advantages {
    background: url(/wp-content/themes/techfile_rooptaba/./assets/bg.png) no-repeat top center;
    background-size: cover;
    padding: 80px 0;
}

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

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

.advantage-card {
    background: linear-gradient(99.47deg, #26FDE6 0%, #6AA5FD 113.32%);

    padding: 40px 30px;
    border-radius: 20px;
    color: var(--darker-bg);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Empower Section */
.empower {
    background: var(--dark-bg);
    padding: 80px 0;
}

.empower .section-title {
    text-align: left;
}

.star {
    color: var(--cyan);
}

.arrow-text {
    color: var(--cyan);
}

.empower-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.empower-left {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.empower-text h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 12px;
     background: linear-gradient(99.47deg, #26FDE6 0%, #6AA5FD 113.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* для підтримки в деяких браузерах */
}

.empower-text p {
    font-size: 16px;
    color: rgba(210, 208, 215, 1);
    line-height: 1.8;
}

.empower-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* About Section */
.about {
    background: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.about-title {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 40px;
  background: rgba(11, 23, 28, 1);
  border-radius: 56px;
  margin-bottom: 36px;
  width: 100%;
}

.about-title .section-title {
  margin-bottom: 0;
}

.about-text {
    max-width: 860px;
    margin: 0 auto 40px;
    font-size: 20px;
    color: rgba(210, 208, 215, 1);
    line-height: 1.8;
}

.btn-movement {
     background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    color: var(--darker-bg);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: unset;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-movement:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 204, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-bg);
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    background: var(--cyan);
    color: var(--darker-bg);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.testimonial-card {
    background: var(--darker-bg);
    padding: 30px;
    border-radius: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.stars {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: var(--dark-bg);
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--darker-bg);
}

.cta-text p {
    font-size: 16px;
    color: var(--darker-bg);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-join {
    background: var(--darker-bg);
    color: var(--text-white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-character {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
}

/* Footer */
.footer {
    background: rgba(19, 46, 55, 1);
    padding: 40px 0 20px;
}

.footer-top {
    text-align: center;
    background: linear-gradient(99.47deg, #26FDE6 0%, #6AA5FD 113.32%);
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    font-size: 14px;
    text-align: center;
    color: #fff;
}

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

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Games Page */
.games-section {
    background: var(--dark-bg);
    padding: 80px 0;
    min-height: 80vh;
    position: relative;
}

.games-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.title-arrow {
    width: 100px;
    height: auto;
}

.games-content {
 background: url(/wp-content/themes/techfile_rooptaba/./assets/games.png) no-repeat center;
  background-size: contain;
  padding-top: 80px;
  padding-bottom: 80px;
}

.games-grid {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 229, 204, 0.3);
}

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

.decorative-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.games-grid {
    position: relative;
    z-index: 1;
}

/* Tribals Game Page */
.game-hero {
    background: var(--dark-bg);
    padding: 80px 0 40px;
}

.game-hero-content {
    text-align: center;
}

.game-hero-image {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.game-about {
    background: var(--dark-bg);
    padding: 60px 0;
}

.game-about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.decorative-waves {
    width: 400px;
}

.decorative-waves svg {
    width: 100%;
    height: auto;
}

.game-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.btn-play-now {
  width: max-content;
  max-width: 100%;
    background: var(--cyan);
    color: var(--darker-bg);
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-play-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 204, 0.3);
}

.why-choose {
    background: var(--dark-bg) url(/wp-content/themes/techfile_rooptaba/./assets/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .empower-content,
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cookie-content h2 {
        font-size: 42px;
    }
    
    .cookie-content p {
        font-size: 20px;
    }
    
    .cookie-btn {
        font-size: 20px;
        padding: 20px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .games-title {
        flex-direction: column;
        font-size: 36px;
    }
    
    .game-about-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .decorative-waves {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 30px;
    }
    
    .cookie-content h2 {
        font-size: 32px;
    }
    
    .cookie-content p {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .stats-box {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links {
      gap: 10px;
    }
    .highlight svg {
      width: 40px !important;
      height: 40px !important;
    }
    .btn-start {
      font-size: 16px;
    }
}

.mob {
  display: none;
}

@media (max-width:768px){
    .about-title {
      flex-direction: column;
    }
    .mob {
      display: block;
    }
}

.empower-img {
  width: 100%;
}

.hero-subtitle {
  margin-bottom: 20px;
}

.policy-section {
  background: var(--dark-bg);
  padding-top: 80px;
  padding-bottom: 60px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.policy-content li {
  list-style-position: inside;
}