:root {
    --bg-color: #08080a;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --accent-color: #6366f1;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --blur-strength: 16px;
    
    /* Gradient Orbs Colors */
    --orb-1: #4f46e5;
    --orb-2: #ec4899;
    --orb-3: #06b6d4;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    width: 100vw;
    /* height: 100vh;
    overflow: hidden; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Animations */
.background-globes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

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

.globe-1 {
    width: 600px;
    height: 600px;
    background: var(--orb-1);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--orb-2);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.globe-3 {
    width: 400px;
    height: 400px;
    background: var(--orb-3);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.4;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 700px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Header */
.card-header {
    margin-bottom: 2rem;
}

.brand-tag {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

/* Content */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 2rem 0;
}

/* Addresses Container */
.addresses-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Address Section */
.address-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease;

}
    @media (max-width: 640px) {
        .address-section {
        align-items: center;
        }
    }

.address-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orb-1), var(--orb-2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-details h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.address-details p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Footer */
.card-footer {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 1.25rem;
}

.social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .address-section {
        flex-direction: column;
        text-align: center;
    }

    .card-footer {
        flex-direction: column;
        gap: 1rem;
    }
}
