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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-page-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #020617;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Stars Background */
.stars-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    border-radius: 50%;
    background-color: #a855f7;
}

/* Lamp Container */
.lamp-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
}

.lamp-container::before {
    content: '';
    position: absolute;
    top: 50%;
    height: 12rem;
    width: 100%;
    transform: translateY(3rem) scaleX(1.5);
    background-color: #020617;
    filter: blur(40px);
    z-index: 5;
}

/* Cones */
.cone {
    position: absolute;
    height: 14rem;
    width: 30rem;
    overflow: visible;
    z-index: 2;
}

.cone-left {
    right: 50%;
    background: conic-gradient(from 70deg at center top, #a855f7, transparent, transparent);
    animation: colorShiftLeft 15s ease-in-out infinite;
}

.cone-right {
    left: 50%;
    background: conic-gradient(from 290deg at center top, transparent, transparent, #a855f7);
    animation: colorShiftRight 15s ease-in-out infinite;
}

/* Glow Effects */
.glow-blur {
    position: absolute;
    top: 50%;
    height: 12rem;
    width: 100%;
    transform: translateY(3rem) scaleX(1.5);
    background-color: #020617;
    filter: blur(40px);
    z-index: 5;
}

.glow-main {
    position: absolute;
    inset: auto;
    z-index: 50;
    height: 9rem;
    width: 28rem;
    transform: translateY(-50%);
    border-radius: 9999px;
    opacity: 0.5;
    filter: blur(60px);
    background-color: #a855f7;
    animation: colorShift 15s ease-in-out infinite;
}

.glow-secondary {
    position: absolute;
    inset: auto;
    z-index: 30;
    height: 9rem;
    width: 16rem;
    transform: translateY(-6rem);
    border-radius: 9999px;
    filter: blur(40px);
    background-color: #a855f7;
    animation: colorShift 15s ease-in-out infinite;
    opacity: 1;
}

.light-beam {
    position: absolute;
    inset: auto;
    z-index: 50;
    height: 2px;
    width: 30rem;
    transform: translateY(-7rem);
    background-color: #a855f7;
    animation: colorShift 15s ease-in-out infinite;
}

.glow-cover {
    position: absolute;
    inset: auto;
    z-index: 40;
    height: 11rem;
    width: 100%;
    transform: translateY(-12.5rem);
    background-color: #020617;
}

/* Content */
.lamp-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.25rem;
    text-align: center;
    width: 100%;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom right, #fca5a5, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    animation: fadeInUp 0.8s ease-in-out 0.3s both;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.2));
}

.main-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    background: linear-gradient(to right, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: fadeInUp 0.8s ease-in-out 0.5s both;
    letter-spacing: 0.5px;
}

/* Features Container */
.features-container {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 90%;
    max-width: 1200px;
    z-index: 20;
}

.feature-box {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-in-out 0.6s both;
}

.feature-box:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(168, 85, 247, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Contact CTA */
.contact-cta {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    text-align: right;
    z-index: 20;
    animation: fadeIn 0.8s ease-in-out 0.7s both;
}

.contact-cta p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom right, #fca5a5, #c084fc);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.5);
}

/* Animations */
@keyframes colorShift {
    0% {
        background-color: #a855f7;
    }
    25% {
        background-color: #ec4899;
    }
    50% {
        background-color: #f43f5e;
    }
    75% {
        background-color: #fb923c;
    }
    100% {
        background-color: #a855f7;
    }
}

@keyframes colorShiftLeft {
    0% {
        background: conic-gradient(from 70deg at center top, #a855f7, transparent, transparent);
    }
    25% {
        background: conic-gradient(from 70deg at center top, #ec4899, transparent, transparent);
    }
    50% {
        background: conic-gradient(from 70deg at center top, #f43f5e, transparent, transparent);
    }
    75% {
        background: conic-gradient(from 70deg at center top, #fb923c, transparent, transparent);
    }
    100% {
        background: conic-gradient(from 70deg at center top, #a855f7, transparent, transparent);
    }
}

@keyframes colorShiftRight {
    0% {
        background: conic-gradient(from 290deg at center top, transparent, transparent, #a855f7);
    }
    25% {
        background: conic-gradient(from 290deg at center top, transparent, transparent, #ec4899);
    }
    50% {
        background: conic-gradient(from 290deg at center top, transparent, transparent, #f43f5e);
    }
    75% {
        background: conic-gradient(from 290deg at center top, transparent, transparent, #fb923c);
    }
    100% {
        background: conic-gradient(from 290deg at center top, transparent, transparent, #a855f7);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        bottom: 1rem;
        gap: 1rem;
    }

    .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        bottom: 0.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .contact-cta {
        top: 1rem;
        right: 1rem;
    }
}
