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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: rgba(0, 0, 0, 1);
    overflow-x: hidden;
    background: rgba(30, 30, 30, 1);
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-notice h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #8B5CF6;
    color: white;
}

.cookie-btn.accept:hover {
    background: #7C3AED;
}

.cookie-btn.settings {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.cookie-btn.settings:hover {
    background: #333;
    color: white;
}

.cookie-notice.hidden {
    display: none;
}

/* Header */
.header {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100vw;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Orbitron";
  text-decoration: unset;
}

.logo img {
    height: 50px;
}

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

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 16px;
}

.nav-list a:hover {
    color: #8B5CF6;
}

/* Hero Section */
.hero {
   position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    padding: 32px;
    margin-bottom: 32px;
    border-radius: 12px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    background: #8B5CF6;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

.hero-image::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);

}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.container-white {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
}

/* Testing Section */
.testing {
    padding-top: 80px;
}

.testing h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e1b4b;
}

.testing > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testing-card:nth-child(2),
.testing-card:nth-child(3) {
  background: linear-gradient(180deg, #B951E6 0%, #572861 100%);
  color: #fff;
}

.testing-card:hover {
    transform: translateY(-5px);
}

.card-number {
    background: linear-gradient(180deg, #B951E6 0%, #572861 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.testing-card:nth-child(2) .card-number,
.testing-card:nth-child(3) .card-number {
background: #fff;
    color: rgba(185, 81, 230, 1);
}

.testing-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Game Sections */
.game-section {
    padding-top: 80px;
}

.hexologic {
    color: white;
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.game-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.game-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.games-info + .games-info {
  margin-top: 80px;
}

.stat {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #B951E6 0%, #572861 100%);
  color: #fff;
}

@media (min-width:768px){
    .stat {
      min-height: 300px;
    }
}

.google-play-btn {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 24px;
}

.google-play-btn:hover {
    transform: scale(1.05);
}

.google-play-btn img {
    height: 63px;
}

.game-image img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* How We Work Section */
.how-we-work {
    padding-top: 80px;
}

.how-we-work h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e1b4b;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.work-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.work-features {
  background: linear-gradient(180deg, #B951E6 0%, #572861 100%);
  padding: 16px;
  border-radius: 12px;
  color: #fff;
}

.work-features li {
  list-style-position: inside;
  margin-bottom: 12px;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #8B5CF6;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Games Section */
.games {
    padding-top: 80px;
}

.game-info,
.game-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.games h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.game-info > p {
  color: #fff;
}

.game-block {
  padding: 32px;
  border-radius: 12px;
  background: #fff;
}

.game-block span {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-label {
    font-weight: 600;
    color: #666;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.game-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.game-features {
    margin: 2rem 0;
}

.game-features .feature {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 4px solid #8B5CF6;
}

.game-features .feature span {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
   
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p,
.contact-info a {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: inherit;
    text-decoration: unset;
}

.contact-benefits {
    margin-top: 2rem;
}

.contact-benefits .benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-benefits .benefit h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #8B5CF6;
}

.contact-benefits .benefit p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 13px;
    border: 1px solid rgba(75, 85, 99, 1);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.submit-btn {
    background: linear-gradient(180deg, #B951E6 0%, #572861 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 1);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6;
}

.footer-social p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .container,
    .container-white {
      margin-left: 20px;
      margin-right: 20px;
      width: calc(100% - 40px);
    }

    .game-info, .game-bottom {
      grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .testing-grid {
        grid-template-columns: 1fr;
    }
    
    .game-content {
      
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .work-content {
        grid-template-columns: 1fr;
    }
    
    .work-features {
        grid-template-columns: 1fr;
    }
    
    .game-review .game-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    .header {
      position: absolute !important;
    }
    
    .nav-list {
      display: none;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .testing h2,
    .game-info h2,
    .how-we-work h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .game-review {
        padding: 2rem 1rem;
    }
    
    .testing,
    .game-section,
    .how-we-work,
    .games,
    .contact {
        padding: 50px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Animations */
.game-review {
  display: flex;
  flex-direction: column;
  gap: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testing-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testing-card:nth-child(1) { animation-delay: 0.1s; }
.testing-card:nth-child(2) { animation-delay: 0.2s; }
.testing-card:nth-child(3) { animation-delay: 0.3s; }
.testing-card:nth-child(4) { animation-delay: 0.4s; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.policy {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 80px;

}

.policy h1 {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

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

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

.policy-content a {
  color: inherit;
  text-decoration: unset;
}