:root {
    --color-primary: #0a0a1f;
    --color-accent-1: #25aee7;
    --color-accent-2: #a934ff;
    --color-accent-3: #ff8b00;
    --color-accent-4: #ff4800;
    --color-text: #f5f5f7;
    --gradient-1: linear-gradient(135deg, var(--color-accent-1) 0%, var(--color-accent-2) 100%);
    --gradient-2: linear-gradient(135deg, var(--color-accent-3) 0%, var(--color-accent-4) 100%);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
}
.gifts-list li {
    transform: none;
}

/* AI Badge */
.ai-badge {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    width: 60px;
    height: auto;
}

/* Background effects */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2 !important;
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2 !important;
}

/* Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    color: var(--color-accent-3);
    background: rgba(255, 139, 0, 0.1);
    border: 2px solid var(--color-accent-3);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 139, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 139, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 139, 0, 0);
    }
}

.main-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-shadow: 0 0 30px rgba(169, 52, 255, 0.3);
}

.headline-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
    color: var(--color-accent-1);
    font-weight: 500;
}

.headline-features .dot {
    color: rgba(255, 255, 255, 0.3);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Qualification box */
.qualification-box {
    padding: 3rem;
    background: rgb(14 10 38 / 84%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.qualification-title {
    font-size: 1.8rem;
    color: var(--color-accent-3);
    margin-bottom: 2rem;
    text-align: center;
}

.qualification-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: start;
}

.point:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.point-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.point-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Gifts preview */
.gifts-preview {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gifts-title {
    font-size: 1.4rem;
    color: var(--color-accent-1);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gifts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0rem;
    text-align: start;
}

.gifts-list li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gifts-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-2);
    border: none;
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 2rem;
    text-align: center;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite linear;
}

.submit-btn:hover {
    transform: scale(1.02) translateY(-1px);
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Footer styles */
.site-footer {
    background: rgb(14 10 38 / 84%);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    z-index: 10;
    position: relative;
    width: calc(100% - 4rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) and (max-width: 991px) {
    .site-footer {
        width: calc(100% - 3rem);
        padding: 1.25rem;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 1rem !important;
    }

    .footer-links {
        margin-left: 0;
        width: 100%;
        justify-content: center !important;
    }

    .copyright {
        width: 100%;
        margin-left: 0;
        text-align: center !important;
    }

    .point,
    .gifts-list li {
        text-align: center;
        justify-content: center;
    }

    .point-text,
    .gifts-list li {
        text-align: start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        width: calc(100% - 2rem);
        padding: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 90px;
    width: auto;
}

.footer-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyright {
    text-align: right;
    margin-left: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .value-tag {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .main-headline {
        font-size: 2.5rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .headline-features {
        gap: 0.75rem;
        margin-bottom: 2rem;
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .qualification-box {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 24px;
    }

    .qualification-title {
        font-size: 1.5rem;
    }

    .point {
        padding: 0.75rem;
        text-align: center;
        justify-content: center;
    }

    .point-text {
        font-size: 1rem;
        text-align: center;
    }

    .gifts-preview {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .gifts-title {
        font-size: 1.2rem;
    }

    .gifts-list {
        text-align: center;
    }

    .gifts-list li {
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        margin-left: 0;
        justify-content: center;
    }

    .copyright {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }

    .main-headline {
        font-size: 2rem;
    }

    .qualification-box {
        padding: 1rem;
    }

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

    .point-icon {
        margin-bottom: 0.5rem;
    }
}
