:root {
    --primary-color: #066409;
    --primary-light: #128f16;
    --bg-color: #050a06;
    --text-main: #ffffff;
    --text-muted: #a0b3a1;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(6, 100, 9, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #081409 0%, var(--bg-color) 100%);
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 45vw;
    height: 45vw;
    max-width: 500px;
    max-height: 500px;
    background: var(--primary-color);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    max-width: 400px;
    max-height: 400px;
    background: var(--primary-light);
    bottom: -10%;
    right: -10%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, 5%) scale(0.95); }
}

/* Container */
.container {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

/* Header */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: slideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(-20px);
    width: 100%;
}

.profile-img-container {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.brand-bio {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

/* Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: var(--btn-delay);
    position: relative;
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    z-index: 2;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 1;
}

.link-btn:hover {
    background: var(--glass-hover);
    border-color: rgba(6, 100, 9, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(6, 100, 9, 0.15);
}

.link-btn:hover::before {
    left: 200%;
}

.link-btn i {
    font-size: 1.4rem;
    color: var(--primary-light);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    width: 24px;
}

.link-btn:hover .btn-content i {
    transform: scale(1.15) rotate(-5deg);
}

.link-btn .arrow-icon {
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.link-btn:hover .arrow-icon {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(4px);
}

/* Highlighted Link (Website) */
.link-btn.highlight {
    background: linear-gradient(135deg, rgba(6, 100, 9, 0.8), rgba(18, 143, 22, 0.8));
    border-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(6, 100, 9, 0.3);
}

.link-btn.highlight:hover {
    background: linear-gradient(135deg, rgba(6, 100, 9, 1), rgba(18, 143, 22, 1));
    box-shadow: 0 12px 30px rgba(6, 100, 9, 0.5);
}

.link-btn.highlight .btn-content i,
.link-btn.highlight .arrow-icon,
.link-btn.highlight:hover .arrow-icon {
    color: #ffffff;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

/* Animations */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1.25rem;
    }
    .brand-name {
        font-size: 1.6rem;
    }
    .link-btn {
        padding: 1.15rem 1.25rem;
    }
    .btn-content {
        font-size: 1rem;
    }
}
