:root {
    --primary-blue: #0f2b5c;
    --accent-cyan: #00a3e0;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(15, 43, 92, 0.5);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-hover: rgba(0, 163, 224, 0.3);
    /* Cyan hover */
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: #0f2b5c;
}

/* Slideshow */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: zoomEffect 15s infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker gradient for better text contrast */
    background: linear-gradient(to bottom, rgba(15, 43, 92, 0.4) 0%, rgba(15, 43, 92, 0.7) 60%, rgba(15, 43, 92, 0.95) 100%);
    z-index: 1;
}

/* Layout */
.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Header */
.profile-header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    /* Circular container */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Reduced padding for larger logo */
    box-shadow: 0 0 20px rgba(0, 163, 224, 0.3);
    transition: transform 0.5s ease;
}

.profile-image-container:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
}

.profile-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bio-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    font-weight: 300;
    max-width: 320px;
}

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

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    /* More rounded, pill shape for modern mobile feel */
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: var(--delay);
    position: relative;
    overflow: hidden;
}

/* Highlight/Promo Style - Blue/Cyan Glow */
.link-card.highlight {
    background: rgba(0, 163, 224, 0.2);
    border-color: rgba(0, 163, 224, 0.5);
    box-shadow: 0 0 15px rgba(0, 163, 224, 0.2);
}

.link-card.highlight .icon-box {
    color: var(--text-white);
    background: var(--accent-cyan);
}

.link-card:hover {
    transform: translateY(-2px);
    background: var(--glass-hover);
    border-color: var(--accent-cyan);
}

.link-card:active {
    transform: scale(0.98);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* Circular icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 1rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    transition: 0.3s;
}

.link-card:hover .icon-box {
    background: var(--accent-cyan);
    color: white;
}

.link-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-text .title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}

.link-text .subtitle {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 300;
}

.arrow {
    color: var(--text-white);
    font-size: 0.8rem;
    opacity: 0.5;
    transition: 0.3s;
    margin-right: 0.5rem;
}

.link-card:hover .arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--accent-cyan);
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out 1s backwards;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: white;
}

.footer p {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.agency-credit {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: var(--text-dim);
    text-decoration: none;
    opacity: 0.5;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.agency-credit:hover {
    opacity: 1;
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
}

to {
    opacity: 1;
}
}