:root {
    --primary-color: #cdf63d;
    /* Lime Green */
    --secondary-color: #333333;
    /* Brand Dark Gray */
    --bg-color: #ffffff;
    --text-color: #111111;
    --dark-color: #000000;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at top left, #ffffff 0%, #f5f5f5 100%);
}

/* Background animated circles for a dynamic feel */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #666;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 100px);
    }
}

/* Main content container refined with Tailwind but keeping animation */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.main-header {
    background-color: var(--dark-color);
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #eee;
}

.social-btn:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(205, 246, 61, 0.4);
}

.main-footer {
    background-color: var(--dark-color);
    padding: 40px 20px;
    width: 100%;
    margin-top: auto;
}

.footer-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 30px 20px;
    }
}


.h-min-min {
    min-height: min-content;
}