html, body {
    width: 100%;
    max-width: 100vw;
    /* ბლოკავს კონტენტს რომელიც ეკრანს სცდება */
    overflow-x: hidden !important; 
    overflow-x: clip !important;
    
    position: relative;
    
    /* 1. კრძალავს თითით მარჯვნივ-მარცხნივ გვერდის გაწევას სენსორზე */
    touch-action: pan-y !important;
    
    /* 2. თიშავს iOS / Android-ის რეზინივით გაწელვის (Bounce) ეფექტს ჰორიზონტალურად */
    overscroll-behavior-x: none !important;
}

body {
    background-color: #05050A;
    color: #f8fafc;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glass-nav {
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.2), inset 0 0 20px rgba(99, 102, 241, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, #818cf8 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    position: relative;
    background: #05050A;
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: 9999px;
}

.border-gradient::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -1;
    border-radius: 9999px;
    background: linear-gradient(135deg, #6366f1, #f43f5e);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.border-gradient:hover::before {
    opacity: 1;
}

.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    border-radius: 50%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05050A;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

.tech-icon {
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.15) translateY(-5px);
}