/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #01011E;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    color: #e91e63;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 200px;
}

.btn-accept {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a3e;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: rgba(26, 26, 62, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
 display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.spindor-logo {
   
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-list a:hover {
    color: #e91e63;
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg, rgba(236, 73, 223, 0.50) 0%, rgba(110, 5, 221, 0.50) 100%);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
}

.google-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 40px;
}

.google-play-btn:hover {
    transform: scale(1.05);
}

.google-play-btn img {
    height: 60px;
    width: auto;
}

.hero-game-preview {
    margin-top: 40px;
}

.game-preview-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Despre Section */
.despre {
    padding: 80px 0;
    
}

.despre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.character-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
}

.despre-text h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(105deg, #EC49DF 0%, #6E05DD 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.despre-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 15px;
}

.despre-text p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Avantaje Section */
.avantaje {
    padding: 80px 0;
    position: relative;
}

.avantaje h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(105deg, #EC49DF 0%, #6E05DD 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 60px;
}

.avantaje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.avantaj-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border-radius: 26px;
border-bottom: 3px solid #EC49DF;
background: rgba(255, 255, 255, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avantaj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.avantaj-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.avantaj-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.avantaj-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.f-img {
    display: flex;
    align-items: flex-end;
}

.f-img img {

    width: 100%;
}

.cupcake-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cupcake {
    position: absolute;
    font-size: 30px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.cupcake-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.cupcake-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.cupcake-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Opinii Section */
.opinii {
    padding: 80px 0;
 
    backdrop-filter: blur(10px);
    position: relative;
}

.opinii h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(105deg, #EC49DF 0%, #6E05DD 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 60px;
}

.op-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
}

.opinii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 30px;
    max-width: 996px;
    width: 100%;
}

.opinie-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border-radius: 26px;
border-bottom: 3px solid #FFB700;
background: rgba(255, 255, 255, 0.10);
    transition: transform 0.3s ease;
}

.opinie-card:hover {
    transform: translateY(-5px);
}

.opinie-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.opinie-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.stars {
    font-size: 14px;
}

.opinie-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.big-cupcake {
   max-width: 184px;
   width: 100%;
    font-size: 100px;
  
    pointer-events: none;
}

.big-cupcake img {
    width: 100%;
}

/* Galerie Section */
.galerie {
    padding: 80px 0;
}

.galerie h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(105deg, #EC49DF 0%, #6E05DD 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 60px;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.galerie-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.galerie-item:hover {
    transform: scale(1.05);
}

.galerie-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 30px;
}

.galerie .google-play-btn {
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
  background: linear-gradient(105deg, rgba(236, 73, 223, 0.50) 0%, rgba(110, 5, 221, 0.50) 100%);
    backdrop-filter: blur(10px);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(105deg, #EC49DF 0%, #6E05DD 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 40px;
    text-align: left;
}

.contact-info p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-form {
    display: grid;
    gap: 20px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    min-width: 200px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

/* Footer */
.footer {
    background: rgba(26, 26, 62, 0.95);
    padding: 40px 0 20px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #e91e63;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e91e63;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

.thank-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 30px;
}

.thank-description {
    margin-bottom: 40px;
}

.thank-description p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thank-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-home {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-home:hover {
    background: #ffffff;
    color: #1a1a3e;
    transform: translateY(-2px);
}

.success-animation {
    margin: 50px 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.success-animation.animate {
    opacity: 1;
    transform: scale(1);
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #e91e63;
    position: relative;
    background: rgba(233, 30, 99, 0.1);
    backdrop-filter: blur(10px);
    animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem {
    position: absolute;
    width: 3px;
    height: 20px;
    background: #e91e63;
    left: 32px;
    top: 30px;
    transform: rotate(45deg);
    animation: checkmark-stem 0.3s ease-in-out 0.6s both;
}

.checkmark-kick {
    position: absolute;
    width: 3px;
    height: 12px;
    background: #e91e63;
    left: 25px;
    top: 42px;
    transform: rotate(-45deg);
    animation: checkmark-kick 0.2s ease-in-out 0.8s both;
}

.contact-info-thank {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.contact-info-thank h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 20px;
}

.contact-info-thank p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes checkmark-circle {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmark-stem {
    0% {
        height: 0;
    }
    100% {
        height: 20px;
    }
}

@keyframes checkmark-kick {
    0% {
        height: 0;
    }
    100% {
        height: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-content h1 {
        font-size: 32px;
    }

    .thank-subtitle {
        font-size: 18px;
    }

    .thank-actions {
        flex-direction: column;
        gap: 20px;
    }

    .thank-icon {
        font-size: 60px;
    }

    .checkmark {
        width: 60px;
        height: 60px;
    }

    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark-stem {
        left: 24px;
        top: 22px;
        height: 15px;
    }

    .checkmark-kick {
        left: 19px;
        top: 31px;
        height: 9px;
    }

    .contact-info-thank {
        padding: 20px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 62, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 40px 20px;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .despre-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .despre-text h2 {
        font-size: 28px;
    }

    .avantaje h2,
    .opinii h2,
    .galerie h2,
    .contact h2 {
        font-size: 28px;
    }

    .avantaje-grid {
        grid-template-columns: 1fr;
    }

    .opinii-grid {
        grid-template-columns: 1fr;
    }

    .galerie-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .cookie-content {
        padding: 30px;
        margin: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn {
        min-width: 100%;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 550px) {
    .op-inner  {
        flex-direction: column;
        align-items: center;
    }
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .sections {
        padding: 60px 0;
    }

    .avantaj-card,
    .opinie-card {
        padding: 20px;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .galerie-item img {
        height: 180px;
    }
}
              .page {
                padding: 180px 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;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                