:root {
    --primary: #FF5722; /* Shrimp Orange */
    --dark-bg: #0f172a;
    --card-bg: rgba(15, 23, 42, 0.6);
    --text-color: #f8fafc;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.logo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, rgba(255,87,34,0.3), rgba(255,167,38,0.3));
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    animation: float 4s ease-in-out infinite;
}

.logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(4px);
}

.status-dot-wrapper {
    position: relative;
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
}

.status-dot-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #4ade80;
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-dot {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 0.5rem;
    width: 0.5rem;
    background-color: #22c55e;
}

.status-text {
    color: #dcfce7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Links Section */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
}

.link-item:hover {
    transform: scale(1.02);
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 87, 34, 0.5);
}

.link-item.featured {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.25);
}

.link-item.featured:hover {
    background: #e64a19;
    transform: scale(1.02);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 1rem;
}

.link-item.featured .link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.link-text {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 36px; /* Balance the icon width */
}

/* Footer */
.footer {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-company {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-copy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Icons (SVG) */
.icon-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

.anim-delay-1 { animation: fadeIn 0.5s ease-out forwards; animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation: fadeIn 0.5s ease-out forwards; animation-delay: 0.2s; opacity: 0; }
.anim-delay-3 { animation: fadeIn 0.5s ease-out forwards; animation-delay: 0.3s; opacity: 0; }
.anim-delay-4 { animation: fadeIn 0.5s ease-out forwards; animation-delay: 0.4s; opacity: 0; }
.anim-delay-5 { animation: fadeIn 0.5s ease-out forwards; animation-delay: 0.5s; opacity: 0; }