:root {
    --bg-color: #010101;
    --primary-color: #24A9E2;
    --text-color: #F8F8F8;
    --text-muted: #aaaaaa;
    --card-bg: rgba(36, 169, 226, 0.05);
    --card-border: rgba(36, 169, 226, 0.2);
    --card-hover-bg: rgba(36, 169, 226, 0.15);
    --card-hover-border: rgba(36, 169, 226, 0.8);
    --font-family: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Background Animation */
.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(36, 169, 226, 0.15) 0%, transparent 60%);
    z-index: -1;
    animation: pulse 10s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile-first optimization */
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.logo-container {
    width: 100%;
    max-width: 280px;
    /* Horizontal width */
    height: auto;
    min-height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    /* Soft rounded corners for rectangle */
    padding: 10px;
    background: #000;
    /* Black background as requested */
    border: 1px solid rgba(36, 169, 226, 0.3);
    /* Subtle blue border */
    box-shadow: 0 0 25px rgba(36, 169, 226, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    /* Ensure full logo is visible */
    border-radius: 0;
    border: none;
    background-color: transparent;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.business-desc {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.agency-tag {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(36, 169, 226, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.special-note {
    margin-top: 1rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    color: #e6e6e6;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.special-note:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.special-note i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Content Area */
.content-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Link Cards */
.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

/* Specific Staggered Delays for links */
.link-card:nth-child(1) {
    animation-delay: 0.2s;
}

.link-card:nth-child(2) {
    animation-delay: 0.3s;
}

.link-card:nth-child(3) {
    animation-delay: 0.4s;
}

.link-card:nth-child(4) {
    animation-delay: 0.5s;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(36, 169, 226, 0.2);
}

.link-card:active {
    transform: scale(0.98);
}

.icon-wrapper {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content {
    flex: 1;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.platform-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.action-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.arrow-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: transform var(--transition-speed);
}

.link-card:hover .arrow-icon {
    color: var(--primary-color);
    transform: translateX(-3px);
    /* RTL direction */
}

/* Contact Section */
.contact-section {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.phone-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.phone-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
}

.phone-pill i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.phone-pill:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 169, 226, 0.3);
}

.phone-pill:hover i {
    color: #fff;
}

/* Footer */
.footer {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.8s;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 1rem;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive tweaks */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
        padding-top: 4rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .logo-container {
        max-width: 350px;
        height: auto;
    }

    .link-card {
        padding: 1.2rem 1.5rem;
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}