:root {
    --primary-dark: #000936;
    --secondary-muted: #B3C9E8;
    --white-base: #FFFFFF;
    --shadow-heavy: rgba(0, 9, 54, 0.18);
    --shadow-soft: rgba(0, 9, 54, 0.04);
    --radius-card: 56px;
    --radius-link: 80px;
    --logo-size: 250px;
    --drop-height: 20px;
    --float-duration: 3s;
}

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-base);
    padding: 24px;
    margin: 0;
}

.card {
    max-width: 540px;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 25%, #B3C9E8 100%);
    border-radius: var(--radius-card);
    padding: 56px 44px 42px;
    box-shadow: 
        0 60px 120px -32px var(--shadow-heavy),
        0 20px 48px -16px var(--shadow-soft);
    border: 1px solid rgba(179, 201, 232, 0.25);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    box-shadow: 0 80px 160px -36px var(--shadow-heavy);
    transform: translateY(-6px) scale(1.004);
}

.card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 70% 30%, rgba(179, 201, 232, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 70%, rgba(0, 9, 54, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ===== PARTICLES / BUBBLES ===== */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    bottom: -10px;
    animation: particleFadeOut var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 6px rgba(0, 9, 54, 0.05);
}

.particle-1 { width: 6px; height: 6px; background: rgba(0, 9, 54, 0.25); left: 8%; --duration: 5.5s; --delay: 0s; }
.particle-2 { width: 8px; height: 8px; background: rgba(179, 201, 232, 0.40); left: 18%; --duration: 6.5s; --delay: 1.2s; }
.particle-3 { width: 5px; height: 5px; background: rgba(0, 9, 54, 0.20); left: 28%; --duration: 5.0s; --delay: 0.6s; }
.particle-4 { width: 7px; height: 7px; background: rgba(179, 201, 232, 0.35); left: 38%; --duration: 5.8s; --delay: 2.0s; }
.particle-5 { width: 5px; height: 5px; background: rgba(0, 9, 54, 0.22); left: 62%; --duration: 5.2s; --delay: 0.3s; }
.particle-6 { width: 9px; height: 9px; background: rgba(179, 201, 232, 0.30); left: 72%; --duration: 6.2s; --delay: 1.8s; }
.particle-7 { width: 6px; height: 6px; background: rgba(0, 9, 54, 0.18); left: 82%; --duration: 5.4s; --delay: 2.5s; }
.particle-8 { width: 7px; height: 7px; background: rgba(179, 201, 232, 0.38); left: 92%; --duration: 6.0s; --delay: 0.9s; }
.particle-9 { width: 5px; height: 5px; background: rgba(0, 9, 54, 0.20); left: 13%; --duration: 4.8s; --delay: 1.5s; }
.particle-10 { width: 8px; height: 8px; background: rgba(179, 201, 232, 0.32); left: 23%; --duration: 5.6s; --delay: 3.0s; }
.particle-11 { width: 6px; height: 6px; background: rgba(0, 9, 54, 0.15); left: 33%; --duration: 5.1s; --delay: 0.5s; }
.particle-12 { width: 7px; height: 7px; background: rgba(179, 201, 232, 0.35); left: 67%; --duration: 5.9s; --delay: 2.2s; }
.particle-13 { width: 5px; height: 5px; background: rgba(0, 9, 54, 0.22); left: 77%; --duration: 5.3s; --delay: 1.0s; }
.particle-14 { width: 8px; height: 8px; background: rgba(179, 201, 232, 0.28); left: 87%; --duration: 6.3s; --delay: 2.8s; }
.particle-15 { width: 6px; height: 6px; background: rgba(0, 9, 54, 0.18); left: 45%; --duration: 4.6s; --delay: 0.2s; }

@keyframes particleFadeOut {
    0%   { opacity: 0; transform: translateY(0px) scale(0.3) rotate(0deg); bottom: -10px; }
    8%   { opacity: 1; transform: translateY(12px) scale(1.2) rotate(6deg); }
    25%  { opacity: 1; transform: translateY(35px) scale(1.1) rotate(15deg); }
    45%  { opacity: 0.9; transform: translateY(58px) scale(1.0) rotate(25deg); }
    60%  { opacity: 0.6; transform: translateY(78px) scale(0.85) rotate(35deg); }
    78%  { opacity: 0.25; transform: translateY(105px) scale(0.55) rotate(50deg); }
    100% { opacity: 0; transform: translateY(140px) scale(0.15) rotate(70deg); bottom: 110%; }
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    width: var(--logo-size);
    height: var(--logo-size);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: dropSlowRise var(--float-duration) ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover {
    animation-play-state: paused;
    transform: scale(1.04);
}

@keyframes dropSlowRise {
    0%   { transform: translateY(0px) scale(1); }
    25%  { transform: translateY(var(--drop-height)) scale(0.97); }
    100% { transform: translateY(0px) scale(1); }
}

.logo-wrapper .ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px solid rgba(0, 9, 54, 0.15);
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(0, 9, 54, 0.12) 25%,
        rgba(0, 9, 54, 0.35) 50%,
        rgba(0, 9, 54, 0.12) 75%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringSpin 6s linear infinite;
    z-index: 1;
    box-shadow: 0 0 30px rgba(0, 9, 54, 0.06);
    pointer-events: none;
}

@keyframes ringSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-wrapper .aura {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(0, 9, 54, 0.05) 0%, 
        transparent 70%
    );
    animation: auraPulse 4s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes auraPulse {
    0%   { opacity: 0.3; transform: scale(0.8); }
    50%  { opacity: 0.6; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

.logo-wrapper .shine {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(0, 9, 54, 0.06) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shineRotate 8s linear infinite;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes shineRotate {
    0%   { transform: rotate(0deg) scale(1.02); opacity: 0.2; }
    50%  { transform: rotate(180deg) scale(1.04); opacity: 0.5; }
    100% { transform: rotate(360deg) scale(1.02); opacity: 0.2; }
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 32px rgba(0, 9, 54, 0.08));
    transition: filter 0.6s ease;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.logo-wrapper:hover img {
    filter: drop-shadow(0 20px 48px rgba(0, 9, 54, 0.15));
}

.logo-fallback {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* ============================================================
   LINKS - People
============================================================ */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0 20px;
    position: relative;
    z-index: 1;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1.5px solid rgba(0, 9, 54, 0.12);
    border-radius: 60px;
    padding: 12px 14px 14px 14px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    margin-top: 22px;
    box-shadow: 
        0 2px 20px rgba(0, 9, 54, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-group:hover {
    border-color: rgba(0, 9, 54, 0.25);
    box-shadow: 
        0 8px 40px rgba(0, 9, 54, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.link-group .group-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    padding: 3px 26px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.8px;
    white-space: nowrap;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 
        0 4px 20px rgba(0, 9, 54, 0.05),
        0 0 0 1px rgba(179, 201, 232, 0.15);
    border: 1px solid rgba(179, 201, 232, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-group .group-label i {
    font-size: 13px;
    color: var(--secondary-muted);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.link-group .group-label .name-highlight {
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
}

.link-group:hover .group-label {
    box-shadow: 
        0 8px 32px rgba(0, 9, 54, 0.08),
        0 0 0 1px rgba(179, 201, 232, 0.30);
    transform: translateX(-50%) scale(1.04);
    border-color: rgba(179, 201, 232, 0.30);
}

.link-group:hover .group-label i {
    opacity: 1;
    color: var(--primary-dark);
}

.link-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    padding: 12px 18px;
    border-radius: var(--radius-link);
    text-decoration: none;
    color: var(--primary-dark);
    border: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: linkReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: left center;
    opacity: 0;
    box-shadow: 0 0 0 1px rgba(0, 9, 54, 0.02);
}

.link-item:nth-child(1) { animation-delay: 0.06s; }
.link-item:nth-child(2) { animation-delay: 0.12s; }
.link-group:nth-child(1) .link-item:nth-child(1) { animation-delay: 0.06s; }
.link-group:nth-child(1) .link-item:nth-child(2) { animation-delay: 0.12s; }
.link-group:nth-child(2) .link-item:nth-child(1) { animation-delay: 0.20s; }
.link-group:nth-child(2) .link-item:nth-child(2) { animation-delay: 0.26s; }
.link-group:nth-child(3) .link-item:nth-child(1) { animation-delay: 0.34s; }
.link-group:nth-child(3) .link-item:nth-child(2) { animation-delay: 0.40s; }

@keyframes linkReveal {
    0%   { opacity: 0; transform: translateX(-30px) scale(0.95); }
    60%  { opacity: 1; transform: translateX(4px) scale(1.01); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.link-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-link);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08),
        rgba(179, 201, 232, 0.04)
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.link-item:hover::before {
    opacity: 1;
}

.link-item:hover {
    transform: translateX(8px) scale(1.015);
    box-shadow: 
        0 0 0 2px rgba(0, 9, 54, 0.08),
        0 12px 40px -12px rgba(0, 9, 54, 0.10);
    background: rgba(255, 255, 255, 0.06);
}

.link-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-muted);
    font-size: 17px;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 9, 54, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.link-item:hover .link-icon {
    background: var(--secondary-muted);
    transform: scale(0.88) rotate(-6deg) translateY(-2px);
    box-shadow: 0 8px 32px rgba(179, 201, 232, 0.25);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-item:hover .link-icon i {
    animation: iconFloat 0.7s ease;
}

@keyframes iconFloat {
    0%   { transform: scale(1) rotate(0); }
    30%  { transform: scale(1.2) rotate(-4deg); }
    60%  { transform: scale(0.88) rotate(3deg); }
    100% { transform: scale(1) rotate(0); }
}

.link-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.link-info .label {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.link-item:hover .link-info .label {
    color: var(--primary-dark);
}

.link-info .sub {
    font-size: 12px;
    color: rgba(0, 9, 54, 0.45);
    font-weight: 400;
    margin-top: 2px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.link-item:hover .link-info .sub {
    color: rgba(0, 9, 54, 0.55);
    opacity: 1;
}

.link-arrow {
    color: rgba(0, 9, 54, 0.20);
    font-size: 14px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    opacity: 0.5;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.link-item:hover .link-arrow {
    transform: translateX(8px) scale(1.1);
    color: var(--secondary-muted);
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   SOCIAL LINKS - Our Links (تعديل الألوان والهوفر)
============================================================ */
.social-section {
    margin-top: 30px;
    padding: 28px 20px 20px;
    border: 1.5px solid rgba(0, 9, 54, 0.10);
    border-radius: 40px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 2px 20px rgba(0, 9, 54, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-section:hover {
    border-color: rgba(0, 9, 54, 0.25);
    box-shadow: 
        0 8px 40px rgba(0, 9, 54, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.social-section .section-title {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    padding: 3px 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 2px 16px rgba(0, 9, 54, 0.04);
    border: 1px solid rgba(179, 201, 232, 0.15);
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-section:hover .section-title {
    box-shadow: 
        0 4px 24px rgba(0, 9, 54, 0.08),
        0 0 0 1px rgba(179, 201, 232, 0.30);
    transform: translateX(-50%) scale(1.04);
    border-color: rgba(179, 201, 232, 0.30);
}

.social-section .section-title i {
    margin-right: 8px;
    color: var(--secondary-muted);
    font-size: 13px;
    transition: all 0.3s ease;
}

.social-section:hover .section-title i {
    opacity: 1;
    color: var(--primary-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 18px;
}

/* ===== الأزرار - اللون الأساسي والهوفر المطلوب ===== */
.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px 12px;
    border-radius: 28px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 9, 54, 0.06);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 9, 54, 0.02);
}

/* اللون الأساسي للأيقونات والكلام */
.social-link i {
    font-size: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: #000936;  /* اللون الأساسي للأيقونات */
    position: relative;
    z-index: 1;
}

.social-link .social-label {
    font-size: 10px;
    color: #000936;  /* اللون الأساسي للكلام */
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08),
        rgba(179, 201, 232, 0.04)
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* الهوفر المطلوب: خلفية #000936 وأيقونات #B3C9E8 */
.social-link:hover {
    transform: translateY(-3px) scale(1.04);
    background: #000936;  /* خلفية الزر باللون الداكن */
    border-color: #000936;
    box-shadow: 0 8px 32px rgba(0, 9, 54, 0.15);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: #B3C9E8;  /* الأيقونات تتحول للون الفاتح */
    transform: scale(1.15) translateY(-2px);
}

.social-link:hover .social-label {
    color: #B3C9E8;  /* الكلام يتحول للون الفاتح */
}

/* ===== Location Button (نفس تعديلات الألوان) ===== */
.social-link-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 60px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(0, 9, 54, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 9, 54, 0.02);
    margin-top: 10px;
}

.social-link-map::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08),
        rgba(179, 201, 232, 0.04)
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.social-link-map i {
    font-size: 20px;
    color: #000936;  /* اللون الأساسي للأيقونة */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.social-link-map span {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: #000936;  /* اللون الأساسي للكلام */
    transition: color 0.3s ease;
}

.social-link-map:hover {
    transform: translateY(-3px) scale(1.02);
    background: #000936;  /* خلفية الزر باللون الداكن */
    border-color: #000936;
    box-shadow: 0 12px 40px -12px rgba(0, 9, 54, 0.15);
}

.social-link-map:hover::before {
    opacity: 1;
}

.social-link-map:hover i {
    color: #B3C9E8;  /* الأيقونة تتحول للون الفاتح */
    transform: scale(1.1) rotate(-4deg);
}

.social-link-map:hover span {
    color: #B3C9E8;  /* الكلام يتحول للون الفاتح */
}

.footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1.5px solid rgba(179, 201, 232, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 1;
    animation: footerReveal 0.9s ease 0.7s forwards;
    opacity: 0;
}

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

.footer .copy {
    font-size: 13px;
    color: #7A9BBF;
    font-weight: 500;
    letter-spacing: 0.4px;
    opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
    .card { padding: 40px 22px 30px; border-radius: 40px; }
    .logo-wrapper { width: 180px; height: 180px; }
    .logo-wrapper .ring { inset: -14px; border-width: 1.2px; }
    .logo-wrapper .aura { inset: -24px; }
    .logo-wrapper .shine { inset: -10px; }
    .logo-fallback { font-size: 48px; }
    .header-logo { margin-bottom: 36px; }
    .links { margin: 32px 0 16px; gap: 14px; }
    .link-group { padding: 10px 10px 12px 10px; border-radius: 50px; margin-top: 20px; }
    .link-group .group-label { font-size: 12px; padding: 2px 18px; top: -13px; gap: 6px; }
    .link-group .group-label i { font-size: 12px; }
    .link-item { padding: 10px 14px; gap: 14px; }
    .link-icon { width: 40px; height: 40px; font-size: 16px; }
    .link-info .label { font-size: 14px; }
    .link-info .sub { font-size: 11px; }
    .social-section { padding: 22px 14px 16px; border-radius: 32px; margin-top: 24px; }
    .social-section .section-title { font-size: 11px; padding: 2px 18px; top: -10px; }
    .social-grid { gap: 8px; margin-bottom: 14px; }
    .social-link { padding: 12px 6px 10px; font-size: 10px; border-radius: 20px; }
    .social-link i { font-size: 20px; }
    .social-link .social-label { font-size: 9px; }
    .social-link-map { font-size: 11px; padding: 12px 16px; border-radius: 50px; margin-top: 8px; }
    .social-link-map i { font-size: 18px; }
    .social-link-map span { font-size: 11px; }
    .footer { margin-top: 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .particle-3, .particle-6, .particle-9, .particle-12, .particle-14 { display: none; }
}

@media (max-width: 380px) {
    .card { padding: 32px 16px 24px; }
    .logo-wrapper { width: 140px; height: 140px; }
    .logo-wrapper .ring { inset: -10px; border-width: 1px; }
    .logo-wrapper .aura { inset: -18px; }
    .logo-wrapper .shine { inset: -8px; }
    .header-logo { margin-bottom: 28px; }
    .links { margin: 24px 0 12px; gap: 12px; }
    .link-group { padding: 8px 6px 10px 6px; border-radius: 40px; margin-top: 18px; }
    .link-group .group-label { font-size: 11px; padding: 2px 14px; top: -11px; gap: 4px; }
    .link-group .group-label i { font-size: 10px; }
    .link-item { padding: 8px 12px; gap: 12px; }
    .link-icon { width: 36px; height: 36px; font-size: 14px; }
    .social-section { padding: 18px 10px 12px; border-radius: 28px; margin-top: 20px; }
    .social-section .section-title { font-size: 10px; padding: 2px 14px; top: -9px; }
    .social-grid { gap: 6px; margin-bottom: 10px; }
    .social-link { padding: 10px 4px 8px; font-size: 9px; border-radius: 16px; }
    .social-link i { font-size: 17px; }
    .social-link .social-label { font-size: 8px; }
    .social-link-map { font-size: 10px; padding: 10px 14px; border-radius: 40px; margin-top: 6px; }
    .social-link-map i { font-size: 16px; }
    .social-link-map span { font-size: 10px; }
    .footer { margin-top: 20px; }
    .particle-2, .particle-5, .particle-8, .particle-11, .particle-15 { display: none; }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--secondary-muted);
    color: var(--primary-dark);
}