:root {
    --accent: #2a3877;
    --accent-rgb: 42, 56, 119;
    --sub-accent: #906917;
    --sub-accent-rgb: 144, 105, 23;
    --color-1: #177b90;
    --color-2: #DFA834;
    --color-3: #533B26;
    --white: #ffffff;
    --bg: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--accent);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* 1. Enhanced Background Layers */
.bg-layer {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Background Image - Adjusted for Visibility */
.bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../img/bg-image-vc.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    /* Increased opacity */
    filter: grayscale(30%);
    /* Kept some color for depth */
    mix-blend-mode: overlay;
    /* Changed to overlay for better visibility on light backgrounds */
}

/* Moving Grid Texture */
.bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(44, 58, 116, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 58, 116, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(-15deg);
    top: -50%;
    left: -50%;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    from {
        transform: rotate(-15deg) translateY(0);
    }

    to {
        transform: rotate(-15deg) translateY(40px);
    }
}

/* Animated Blobs */
.bg-graphic {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 25s infinite alternate ease-in-out;
}

.graphic-1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--accent-rgb), 0.5);
    top: -100px;
    right: -100px;
}

.graphic-2 {
    width: 350px;
    height: 350px;
    background: rgba(var(--sub-accent-rgb), 0.5);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.graphic-3 {
    width: 200px;
    height: 200px;
    background: var(--color-1);
    top: 30%;
    left: 20%;
    animation-delay: -12s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(50px, 80px) rotate(10deg) scale(1.2);
    }

    66% {
        transform: translate(-30px, 40px) rotate(-10deg) scale(0.8);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* 2. Layout Structure */
.main-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

/* 3. Branding Section */
.brand-section {
    text-align: center;
    animation: fadeInDown 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-glass {
    width: 30vw;
    height: 30vw;
    max-width: 250px;
    max-height: 250px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
}

.logo-glass img {
    width: 30vw;
    height: auto;
    max-width: 250px;
}

.brand-section h1 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    margin: 4px;
    margin-bottom: 8px;
}

.divider {
    width: 30px;
    height: 1.5px;
    background: var(--sub-accent);
    margin: 0 auto 8px;
    border-radius: 2px;
    opacity: 0.6;
}

/* 4. Information Stack */
.info-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.glass-item {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--accent);
    margin-top: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(44, 58, 116, 0.1);
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    transition: all 0.3s ease;
}

.glass-item:active {
    transform: scale(0.96) translateX(5px);
    background: rgba(255, 255, 255, 0.95);
}

.glass-item:nth-child(1) {
    animation-delay: 0.4s;
}

.glass-item:nth-child(2) {
    animation-delay: 0.5s;
}

.glass-item:nth-child(3) {
    animation-delay: 0.6s;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--color-1);
}

.data-text {
    flex: 1;
}

.data-text span {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

.data-text small {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
}

/* 5. Instagram Profile */
.ig-action {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s both;
    max-width: 250px;
    margin: 20px auto;

}

.ig-gradient-btn {
    /* Official Instagram Gradient */
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 12px;
}

.ig-gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.45);
}

.ig-gradient-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}