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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --metallic-silver: #c0c0c0;
    --metallic-gold: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-metallic: linear-gradient(135deg, #c0c0c0 0%, #808080 50%, #c0c0c0 100%);
    --gradient-glow: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(128, 128, 128, 0.1) 100%);
}

body {
    font-family: 'Almarai', 'El Messiri', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
    direction: rtl;
    text-align: right;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

/* Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
    opacity: 0.5;
}

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

/* Aluminum Shapes Background - أشكال استعمالات الألمنيوم المتحركة */
.aluminum-shapes-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

.aluminum-shape {
    position: absolute;
    opacity: 0;
    animation: shapeAppear 25s ease-in-out infinite;
}

.window-1 {
    width: 120px;
    height: 180px;
    top: 5%;
    right: 2%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.window-2 {
    width: 100px;
    height: 150px;
    top: 85%;
    right: 3%;
    animation-delay: 5s;
    animation-duration: 35s;
}

.window-3 {
    width: 90px;
    height: 120px;
    top: 10%;
    right: 85%;
    animation-delay: 18s;
    animation-duration: 27s;
}

.sliding-window-1 {
    width: 130px;
    height: 95px;
    top: 15%;
    right: 5%;
    animation-delay: 12s;
    animation-duration: 33s;
}

.window-4 {
    width: 140px;
    height: 190px;
    top: 75%;
    right: 88%;
    animation-delay: 8s;
    animation-duration: 32s;
}

.window-5 {
    width: 160px;
    height: 90px;
    top: 90%;
    right: 75%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.window-6 {
    width: 100px;
    height: 100px;
    top: 5%;
    right: 92%;
    animation-delay: 22s;
    animation-duration: 25s;
}

@keyframes shapeAppear {
    0% {
        opacity: 0;
        transform: translateX(50px) translateY(30px) scale(0.8) rotate(5deg);
    }
    5% {
        opacity: 0.3;
    }
    15% {
        opacity: 0.7;
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    }
    85% {
        opacity: 0.7;
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    }
    95% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateX(-50px) translateY(-30px) scale(0.8) rotate(-5deg);
    }
}

/* Drawing Animation - تأثير الرسم التدريجي */
.draw-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 4s ease-in-out infinite;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.draw-circle {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCircle 2s ease-in-out infinite;
    stroke-linecap: round;
}

/* تأخيرات مختلفة لكل عنصر في الشكل */
.window-1 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.window-1 .draw-path:nth-child(2) {
    animation-delay: 1s;
}

.window-1 .draw-path:nth-child(3) {
    animation-delay: 1.5s;
}

.window-2 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.window-2 .draw-path:nth-child(2) {
    animation-delay: 1.2s;
}

.door-1 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.door-1 .draw-circle {
    animation-delay: 1.5s;
}

.door-1 .draw-path:nth-child(3) {
    animation-delay: 2s;
}

.frame-1 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.frame-1 .draw-path:nth-child(2) {
    animation-delay: 1s;
}

.frame-1 .draw-path:nth-child(3) {
    animation-delay: 1.5s;
}

.profile-section-1 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.profile-section-1 .draw-path:nth-child(2) {
    animation-delay: 1.2s;
}

.sliding-window-1 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.sliding-window-1 .draw-path:nth-child(2) {
    animation-delay: 1.5s;
}

.window-3 .draw-path:nth-child(1) {
    animation-delay: 0s;
}

.window-3 .draw-path:nth-child(2) {
    animation-delay: 1s;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    90% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 50;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -50;
        opacity: 0;
    }
}

/* Hover effect on shapes */
.aluminum-shape:hover .draw-path,
.aluminum-shape:hover .draw-circle {
    stroke-dashoffset: 0;
    opacity: 1;
    animation-play-state: paused;
}

.aluminum-shape:hover {
    opacity: 0.6 !important;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

/* Background Animation */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--metallic-silver) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--metallic-silver);
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    right: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    right: 25%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    right: 40%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    right: 55%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    right: 70%;
    animation-delay: 8s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    right: 85%;
    animation-delay: 10s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    right: 30%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.particle:nth-child(8) {
    right: 65%;
    animation-delay: 14s;
    animation-duration: 21s;
}

@keyframes float {
    0% {
        transform: translateY(110vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(30px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0);
        opacity: 0;
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 8rem 0.5rem;
    max-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

body[dir="rtl"] .content {
    text-align: center;
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Fallback: Ensure content is visible on mobile even before JS loads */
@media (max-width: 768px) {
    .fade-in-up {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
}

.fade-in-up[data-delay="200"] {
    animation-delay: 0.2s;
}

.fade-in-up[data-delay="400"] {
    animation-delay: 0.4s;
}

.fade-in-up[data-delay="600"] {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 130px;
    width: auto;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(192, 192, 192, 0.4));
}

.logo-container:hover .bg-line {
    animation-duration: 4s;
    opacity: 0.5;
}

.logo-container:hover .bg-rectangle {
    animation-duration: 8s;
}

/* Typography */
.main-text {
    margin-bottom: 1.5rem;
}

.title {
    font-family: 'El Messiri', 'Almarai', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.title-word {
    display: inline-block;
    margin: 0 0.3em;
    animation: wordGlow 4s ease-in-out infinite;
    position: relative;
    /* Start with subtle glow, then animate */
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
}

.title-word:nth-child(1) {
    animation-delay: 0.3s;
}

.title-word:nth-child(2) {
    animation-delay: 0.5s;
}

.title-word:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes wordGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(192, 192, 192, 0.5), 0 0 25px rgba(192, 192, 192, 0.3);
    }
}

.subtitle {
    font-family: 'Almarai', 'Noto Sans Arabic', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    min-width: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--metallic-silver);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.2);
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-number {
    font-size: clamp(2.2rem, 4vw, 2.5rem);
    font-weight: 800;
    font-family: 'El Messiri', 'Almarai', sans-serif;
    color: var(--metallic-silver);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.countdown-label {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0;
    font-family: 'Almarai', sans-serif;
}

/* Stock Widget - عرض سعر السهم */
.stock-widget {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stock-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    position: relative;
    overflow: hidden;
    animation: stockCardGlow 3s ease-in-out infinite;
}

.stock-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.stock-card:hover::before {
    left: 100%;
}

.stock-card:hover {
    transform: translateY(-5px);
    border-color: var(--metallic-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), 0 0 30px rgba(192, 192, 192, 0.2);
}

@keyframes stockCardGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.2);
    }
}

.stock-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-direction: row-reverse;
}

.stock-icon {
    color: var(--metallic-gold);
    animation: stockIconPulse 2s ease-in-out infinite;
}

@keyframes stockIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.stock-title {
    font-family: 'Almarai', 'El Messiri', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.stock-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stock-price-container,
.stock-change-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.stock-price-container:last-child,
.stock-change-container:last-child {
    border-bottom: none;
}

.stock-label {
    font-family: 'Almarai', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stock-price {
    font-family: 'El Messiri', 'Almarai', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--metallic-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.stock-price-value {
    color: var(--metallic-gold);
}

.stock-change {
    font-family: 'Almarai', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--metallic-silver);
}

.stock-link {
    color: var(--metallic-silver);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(192, 192, 192, 0.1);
}

.stock-link:hover {
    color: var(--metallic-gold);
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(-3px);
}

.stock-update-time {
    margin-top: 1rem;
    font-family: 'Almarai', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.7;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--metallic-silver);
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    color: var(--metallic-silver);
    box-shadow: 0 15px 35px rgba(192, 192, 192, 0.3);
}

.social-link svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2) rotate(-5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow: hidden;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0.5rem;
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        overflow-x: hidden;
    }
    
    .content {
        padding: 4rem 0.25rem;
        height: 100vh;
        overflow: hidden;
        overflow-x: hidden;
        justify-content: center;
    }
    
    /* Force fade-in elements to be visible on mobile */
    .fade-in-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    /* Reduce animation complexity on mobile for better performance */
    .aluminum-shapes-bg {
        opacity: 0.15;
    }
    
    .aluminum-shape {
        opacity: 0.1;
        animation: none;
    }
    
    .particle {
        animation: none;
        opacity: 0;
    }
    
    .bg-animation {
        display: none;
    }

    .logo {
        max-height: 90px;
    }

    .logo-container {
        margin-bottom: 0.5rem;
    }
    
    .window-1,
    .window-2,
    .window-3,
    .door-1,
    .frame-1,
    .profile-section-1,
    .sliding-window-1 {
        width: 120px !important;
        height: auto;
    }

    .title {
        font-size: 2rem;
        /* Improve text clarity on mobile while keeping gradient */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        /* Keep gradient but improve rendering */
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Start with clear text, then allow subtle animation */
        opacity: 1;
    }
    
    .title-word {
        /* Reduce blur effect on mobile - make animation subtler */
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Start with clear text shadow - no blur initially */
        text-shadow: 0 0 4px rgba(192, 192, 192, 0.3);
        /* Delay animation start to show clear text first */
        animation: wordGlowMobile 5s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    /* Subtler glow animation for mobile - starts clear then subtle glow */
    @keyframes wordGlowMobile {
        0%, 20% {
            text-shadow: 0 0 4px rgba(192, 192, 192, 0.3);
        }
        50% {
            text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
        }
        80%, 100% {
            text-shadow: 0 0 4px rgba(192, 192, 192, 0.3);
        }
    }

    .subtitle {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1.5rem 2rem;
        min-width: 90px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .email-form {
        flex-direction: column-reverse;
        border-radius: 20px;
        padding: 0.5rem;
    }
    
    .submit-btn {
        flex-direction: row-reverse;
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }

    .email-input {
        border-radius: 15px;
    }

    .social-links {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 55px;
        height: 55px;
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 3rem 0.25rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }

    .main-text {
        margin-bottom: 1rem;
    }

    .email-form-container {
        margin: 3rem 0;
    }

    .countdown-item {
        min-width: 75px;
        padding: 1rem 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    .title-word {
        margin: 0 0.2em;
        /* Improve rendering on small screens */
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Start clear, then subtle animation */
        text-shadow: 0 0 3px rgba(192, 192, 192, 0.3);
        animation: wordGlowMobile 5s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .title {
        font-size: 1.75rem;
        /* Improve text clarity on small screens while keeping gradient */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
    
    .subtitle {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .stock-widget {
        margin: 1rem 0;
    }
    
    .social-links {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* Prevent Scrolling */
html {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

/* Selection */
::selection {
    background: rgba(192, 192, 192, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(192, 192, 192, 0.3);
    color: var(--text-primary);
}
