/* Kalron - Custom Styles */
body {
    background-color: #050505;
    color: #e5e5e5;
    overflow-x: hidden;
}

/* Tech Grid Background */
.bg-grid {
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, transparent, 10%, black, 90%, transparent);
}

/* Glitch Effect for Title */
.glitch-wrapper {
    position: relative;
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Utilities */
.text-glow {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Card Effect */
.principle-card {
    transition: all 0.3s ease;
}
.principle-card:hover {
    border-color: #00f0ff;
    transform: translateY(-5px);
    background: rgba(0, 240, 255, 0.05);
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00f0ff;
}
