:root {
    --primary-green: #66CC00;
    --dark-green: #2E7D32;
    --vibrant-green: #8DC63F;
    --text-dark: #121212;
    --text-light: #F8F9FA;
    --bg-light: #FFFFFF;
    --bg-accent: #f0f4f8;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Elements */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 204, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -2;
    animation: move 20s infinite alternate;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary-green);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background-color: var(--vibrant-green);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes move {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(50px) scale(1.1);
    }
}

/* Container */
.container {
    max-width: 900px;
    width: 95%;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    margin-bottom: 3rem;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

/* Content */
.text-content {
    margin-bottom: 3rem;
}

.pre-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.dot {
    color: var(--primary-green);
    -webkit-text-fill-color: var(--primary-green);
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA & Info */
.cta-section {
    margin-bottom: 4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(102, 204, 0, 0.1);
    color: var(--dark-green);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(102, 204, 0, 0.2);
}

.contact-info {
    font-size: 1.1rem;
    color: #444;
}

.email-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.email-link:hover {
    border-bottom-color: var(--primary-green);
}

/* Social Links */
.social-container {
    margin-top: 2rem;
}

.social-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.facebook {
    background-color: #1877F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.twitter {
    background-color: #000000;
}

.tiktok {
    background-color: #000000;
}

.linkedin {
    background-color: #0077B5;
}

.spotify {
    background-color: #1DB954;
}

.youtube {
    background-color: #FF0000;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--primary-green);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    color: #999;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation-delay: 0.3s;
}

.animate-fade-up {
    animation-delay: 0.5s;
}

.animate-fade-down {
    animation-delay: 0.1s;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
        /* Better for tall content on small screens */
        padding-top: 2rem;
    }

    .container {
        padding: 1rem;
        width: 100%;
        overflow-x: hidden;
    }

    .logo {
        max-width: 180px;
    }

    .main-title {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
        letter-spacing: -1px;
    }

    .description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .contact-info {
        font-size: 0.95rem;
        word-break: break-all;
    }
}

@media (max-width: 380px) {
    .main-title {
        font-size: 2.2rem;
    }

    .logo {
        max-width: 150px;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-btn {
        width: 36px;
        height: 36px;
    }
}