
/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Space Grotesk', monospace;
    background: #000000;
    overflow-x: hidden;
    color: #ffffff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 2px;
}

/* Card border animation */
.animated-border {
    position: relative;
    background: #000000;
    border-radius: 12px;
    padding: 1px;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, transparent, transparent 40%, #ffffff, transparent 60%, transparent);
    background-size: 400% 400%;
    animation: border-light 3s linear infinite;
    z-index: -1;
}

.animated-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, transparent, transparent 40%, #ffffff, transparent 60%, transparent);
    background-size: 400% 400%;
    animation: border-light 3s linear infinite reverse;
    z-index: -1;
}

@keyframes border-light {
    0% {
        background-position: 0% 0%;
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        background-position: 400% 400%;
    }
}

/* Title lighting animation */
.title-lighting {
    color: #ffffff;
    text-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #ffffff,
        0 0 20px rgba(255, 255, 255, 0.5);
    animation: lighting-pulse 2s ease-in-out infinite;
}

@keyframes lighting-pulse {
    0%, 100% {
        text-shadow: 
            0 0 5px #ffffff,
            0 0 10px #ffffff,
            0 0 15px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 
            0 0 10px #ffffff,
            0 0 20px #ffffff,
            0 0 30px rgba(255, 255, 255, 0.8);
    }
}

/* 3D Icon Styles */
.icon-3d {
    filter: 
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)
        drop-shadow(0 0 4px rgba(255, 255, 255, 0.6)
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.4))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.icon-3d:hover {
    filter: 
        drop-shadow(0 0 3px rgba(255, 255, 255, 1))
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.6))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    transform: translateZ(10px);
}

/* Minimal button styles */
.btn-minimal {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}

/* Responsive text sizes */
@media (max-width: 768px) {
    .responsive-text {
        font-size: 0.875rem;
    }
}

/* Card content styling */
.card-content {
    background: #000000;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}
