/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Futuristic Color Palette */
    --primary-cyan: #00ffff;
    --primary-purple: #8b5cf6;
    --primary-pink: #ff69b4;
    --accent-blue: #0066ff;
    --accent-green: #00ff88;
    --accent-orange: #ff6b35;
    
    /* Kawaii Colors */
    --kawaii-pink: #ffb3d9;
    --kawaii-purple: #d9b3ff;
    --kawaii-blue: #b3d9ff;
    --kawaii-yellow: #fff3b3;
    
    /* Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-accent: #00ffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--primary-pink), var(--accent-blue));
    --gradient-kawaii: linear-gradient(135deg, var(--kawaii-pink), var(--kawaii-purple));
    
    /* Shadows and Glows */
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5);
    --glow-pink: 0 0 20px rgba(255, 105, 180, 0.5);
    
    /* Fonts */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary-cyan), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stars::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--kawaii-pink);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.floating-particles::before {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

.floating-particles::after {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
}

.holographic-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container:hover {
    background: rgba(26, 26, 46, 0.9);
    box-shadow: var(--glow-cyan);
}

.nav-logo {
    position: relative;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
    border-radius: 5px;
    filter: blur(10px);
    animation: pulse 2s infinite;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1rem;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    position: relative;
}

.section {
    min-height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
}

.section.active {
    display: flex;
}

/* Hero Section */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.greeting-container {
    position: relative;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(20px);
    animation: pulse 2s infinite;
}

.kawaii-elements {
    position: absolute;
    top: -20px;
    right: -50px;
    display: flex;
    gap: 1rem;
}

.floating-heart,
.floating-star,
.floating-sparkle {
    font-size: 2rem;
    animation: kawaiiBounce 2s infinite ease-in-out;
}

.floating-heart {
    animation-delay: 0s;
}

.floating-star {
    animation-delay: 0.7s;
}

.floating-sparkle {
    animation-delay: 1.4s;
}

.hero-description {
    margin: 2rem 0;
}

.description-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.typing-animation {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary-cyan);
    height: 30px;
}

.typed-text {
    border-right: 2px solid var(--primary-cyan);
}

.cursor {
    animation: blink 1s infinite;
}

.cta-container {
    margin-top: 2rem;
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.cta-button:hover .btn-glow {
    opacity: 0.5;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.holographic-card {
    position: relative;
    width: 350px;
    height: 450px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.holographic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--primary-cyan),
        transparent,
        var(--primary-purple),
        transparent
    );
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.holographic-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-secondary);
    border-radius: 18px;
    z-index: -1;
}

.holographic-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.avatar-container {
    text-align: center;
}

.avatar-frame {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-cyan);
    transition: all 0.3s ease;
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(15px);
    animation: pulse 2s infinite;
}

.avatar-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 2px;
    animation: scan 3s infinite;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.status-text {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.info-display {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-value {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Interactive Zone */
.interactive-zone {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-icons {
    display: flex;
    gap: 2rem;
}

.icon-orbit {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: orbit 4s infinite linear;
}

.icon-orbit:nth-child(2) {
    animation-delay: 1.3s;
}

.icon-orbit:nth-child(3) {
    animation-delay: 2.6s;
}

.icon-orbit:hover {
    transform: scale(1.2);
    box-shadow: var(--glow-cyan);
}

.icon-orbit i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

/* About Section */
.section-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    position: relative;
}

.title-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 1rem auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.skills-container {
    background: rgba(26, 26, 46, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.skills-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.skill-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.skill-item span {
    font-weight: 600;
    color: var(--text-primary);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-display {
    width: 300px;
    height: 400px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--accent-blue);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.tech-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    animation: techScan 3s infinite;
}

.display-screen {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.data-stream {
    width: 100%;
    height: 100px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        var(--accent-blue) 10px,
        var(--accent-blue) 12px
    );
    opacity: 0.3;
    animation: dataFlow 2s infinite linear;
}

.hologram-projection {
    text-align: center;
}

.projection-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
    margin-bottom: 1rem;
}

.projection-status {
    font-size: 1rem;
    color: var(--accent-green);
    animation: blink 1s infinite;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    text-align: center;
    max-width: 600px;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.email-container {
    display: flex;
    justify-content: center;
}

.email-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 25px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.email-display:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.email-display i {
    font-size: 1.2rem;
    color: var(--primary-cyan);
}

.email-text {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-size: 1rem;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--primary-cyan);
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: scale(1.1);
}

.social-container {
    width: 100%;
    max-width: 800px;
}

.social-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-kawaii);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--text-primary);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-link.linkedin .social-icon {
    background: rgba(0, 119, 181, 0.2);
    border: 2px solid #0077b5;
    color: #0077b5;
}

.social-link.facebook .social-icon {
    background: rgba(24, 119, 242, 0.2);
    border: 2px solid #1877f2;
    color: #1877f2;
}

.social-link.twitter .social-icon {
    background: rgba(29, 161, 242, 0.2);
    border: 2px solid #1da1f2;
    color: #1da1f2;
}

.social-link.instagram .social-icon {
    background: rgba(225, 48, 108, 0.2);
    border: 2px solid #e1306c;
    color: #e1306c;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}

.social-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.social-link:hover .social-glow {
    opacity: 0.1;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.loading-logo {
    position: relative;
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--primary-cyan);
}

.loading-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 1s infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
}

.loading-status {
    font-family: var(--font-primary);
    color: var(--text-secondary);
    font-size: 1rem;
    animation: blink 1s infinite;
}

/* Animations */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px var(--primary-cyan); }
    50% { text-shadow: 0 0 20px var(--primary-cyan), 0 0 30px var(--primary-purple); }
}

@keyframes kawaiiBounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

@keyframes scan {
    0% { top: 0; opacity: 1; }
    50% { opacity: 0.5; }
    100% { top: calc(100% - 4px); opacity: 1; }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

@keyframes techScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-container,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .holographic-card {
        width: 300px;
        height: 400px;
        padding: 20px;
    }
    
    .avatar-frame {
        width: 120px;
        height: 120px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .floating-icons {
        gap: 1rem;
    }
    
    .icon-orbit {
        width: 50px;
        height: 50px;
    }
    
    .kawaii-elements {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 120px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .holographic-card {
        width: 280px;
        height: 350px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .loading-logo {
        font-size: 3rem;
    }
    
    .loading-bar {
        width: 250px;
    }
}

