:root {
    --primary-color: #00FFBB;
    --secondary-color: #00E5A7;
    --accent-color: #FF2E63;
    --background-color: #161A30;
    --text-color: #ffffff;
    --card-bg: rgba(22, 26, 48, 0.8);
    --footer-bg: rgba(22, 26, 48, 0.95);
    --gradient-1: linear-gradient(135deg, #00FFBB 0%, #00C291 100%);
    --gradient-2: linear-gradient(45deg, #FF2E63 0%, #FF1744 100%);
}

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

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Header & Navigation */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

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

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 1000;
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.5s ease;
    }

    .nav-menu li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-menu li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-menu li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-menu li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav-menu li:nth-child(5) {
        transition-delay: 0.6s;
    }

    .nav-menu li:nth-child(6) {
        transition-delay: 0.7s;
    }

    .nav-menu li:nth-child(7) {
        transition-delay: 0.8s;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/PHOTO1.webp') center/cover;
    filter: brightness(0.3) saturate(1.2);
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    background: rgba(10, 10, 10, 0.85);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease;
    overflow: hidden;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    50%,
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: var(--gradient-2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Advantages Section */
.advantages {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.1;
    animation: float 10s infinite;
}

.advantages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.advantage-card:hover::before {
    transform: translateX(100%);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Reviews Section */
.reviews {
    padding: 6rem 2rem;
    position: relative;
}

.reviews-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--footer-bg);
    padding: 4rem 2rem;

    /* Age Verification Popup */
    .age-verification {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .age-verification .popup-content {
        background: var(--card-bg);
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        animation: fadeIn 0.5s ease;
        max-width: 400px;
        width: 90%;
    }

    .age-verification h2 {
        color: var(--accent-color);
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .popup-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .popup-btn {
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .yes-btn {
        background: var(--gradient-2);
        color: white;
    }

    .no-btn {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-color);
    }

    .popup-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.disclaimer {
    background: rgba(255, 127, 80, 0.05);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 127, 80, 0.2);
}

.disclaimer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.disclaimer-header h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.disclaimer-18 {
    display: inline-block;
    background: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    margin-right: 0.5rem;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
}

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

    .hero-text {
        text-align: center;
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

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


/* How to Play Page Styles */
.how-to-play {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.how-to-play__title {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.how-to-play__subtitle {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.how-to-play__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.how-to-play__section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.how-to-play__section:hover {
    transform: translateY(-5px);
}

.how-to-play__section-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-play__steps {
    list-style: none;
    counter-reset: step-counter;
}

.how-to-play__step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.how-to-play__step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.how-to-play__step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.how-to-play__bullet-list {
    list-style: none;
    margin: 1.5rem 0;
}

.how-to-play__bullet {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.how-to-play__bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-color);
    border-radius: 50%;
}

.how-to-play__highlight {
    background: rgba(255, 127, 80, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.how-to-play__highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 127, 80, 0.1), transparent);
    transform: translateX(-100%);
    animation: highlightShine 3s infinite;
}

@keyframes highlightShine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

/* Hover Effects */
.how-to-play__section {
    position: relative;
    overflow: hidden;
}

.how-to-play__section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.how-to-play__section:hover::after {
    transform: translateX(100%);
}

/* Animation for sections on scroll */
.how-to-play__section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.how-to-play__section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .how-to-play {
        padding: 5rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .how-to-play {
        padding: 4rem 1rem;
    }

    .how-to-play__title {
        font-size: 2.5rem;
    }

    .how-to-play__subtitle {
        font-size: 1.5rem;
    }

    .how-to-play__section {
        padding: 1.5rem;
    }

    .how-to-play__section-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .how-to-play__title {
        font-size: 2rem;
    }

    .how-to-play__subtitle {
        font-size: 1.3rem;
    }

    .how-to-play__step {
        padding-left: 2.5rem;
    }

    .how-to-play__highlight {
        padding: 1.5rem;
    }
}

/* Point System Page Styles */
.points-system {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.points-system__title {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.points-system__subtitle {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.points-system__section {
    margin-bottom: 4rem;
}

.points-system__section-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.points-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.points-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.points-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.points-card:hover::before {
    transform: scaleX(1);
}

.points-card__title {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.points-card__value {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
}

.points-card__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Bonus Points Section */
.bonus-points {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.bonus-points__title {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-points__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-points__item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-points__item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.bonus-points__value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bonus-points__condition {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Accuracy Indicators */
.accuracy-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.accuracy-indicator__bar {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.accuracy-indicator__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.accuracy-indicator__value {
    font-size: 1.1rem;
    min-width: 60px;
    text-align: right;
}

/* Animation for cards on scroll */
.points-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.points-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .points-system {
        padding: 5rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .points-system {
        padding: 4rem 1rem;
    }

    .points-system__title {
        font-size: 2.5rem;
    }

    .points-system__subtitle {
        font-size: 1.5rem;
    }

    .points-card__title {
        font-size: 1.2rem;
    }

    .points-card__value {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .points-system__title {
        font-size: 2rem;
    }

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

    .bonus-points__grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact__title {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact__subtitle {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.contact__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 800px;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Contact Info Styles */
.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.contact-info__item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2.5rem;
}

.contact-info__item:last-child {
    margin-bottom: 0;
}

.contact-info__icon {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-color);
}

.contact-info__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.contact-info__value {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info__value:hover {
    color: var(--secondary-color);
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form__group {
    margin-bottom: 2rem;
    position: relative;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-2);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.form__submit:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Form validation styles */
.form__input:invalid:not(:placeholder-shown),
.form__textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4433;
}

.form__input:valid:not(:placeholder-shown),
.form__textarea:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

/* Animation for form success */
@keyframes formSuccess {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.form--success {
    animation: formSuccess 0.5s ease;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .contact__content {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }

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

    .contact__title {
        font-size: 2.5rem;
    }

    .contact__subtitle {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact__title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Policy Page Styles */
.policy {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Policy Content Container */
.policy-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

/* Typography */
.policy-content h1 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Hover effect for sections */
.policy-content h2 {
    transition: transform 0.3s ease;
}

.policy-content h2:hover {
    transform: translateX(10px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .policy {
        padding: 5rem 1.5rem;
    }

    .policy-content {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .policy {
        padding: 4rem 1rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content p {
        font-size: 1rem;
    }
}