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

body {
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    padding-top: 50px !important;
}
@media (width <= 600px) {
    body {
        padding-top: 80px !important;
    }
}
@media (height <= 650px) {
    body {
        padding-top: 100px !important;
    }
}

/* Glassmorphism effects */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #c471f5 75%, #667eea 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
}

.gradient-text-ai {
    background: linear-gradient(135deg, #00D9FF44 0%, #0099FF 25%, #FF00FF 50%, #FF0099 75%, #00D9FF 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Neural network background pattern */
.neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
}

/* Globe container */
#globe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Glowing button */
.glow-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.glow-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Neon glow */
.neon-glow {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5),
                0 0 40px rgba(0, 217, 255, 0.3),
                0 0 60px rgba(0, 217, 255, 0.1);
}

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Tech grid pattern */
.tech-grid {
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Holographic effect */
.holographic {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    animation: holographic-shift 3s ease infinite;
}

@keyframes holographic-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00D9FF44, #FF00FF);
    border-radius: 4px;
}

/* Terminal cursor effect */
.terminal-cursor::after {
    content: '_';
    animation: blink 1s infinite;
}

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

/* Cyber lines */
.cyber-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cyber-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00D9FF44, transparent);
    animation: cyber-rain 5s linear infinite;
}

@keyframes cyber-rain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

#ai-stats .char-infinity {
    font-size: 3.5em;
}

@media (width <= 600px) {
    #ai-stats .char-infinity {
        font-size: 1.5em !important;
    }
}

/* TAILWIND OVERRIDES */
@media (width <= 768px) {
    .text-xl {
        font-size: 1.20rem !important;
    }
    .text-3xl {
        font-size: 1.80rem !important;
    }
    .text-5xl {
        font-size: 2.85rem !important;
    }
}

/* Team Section Styles */
#team .team-category {
    margin-bottom: 80px;
}

#team .team-category h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

#team .founders {
    border: 3px solid rgba(0, 217, 255, 0.5);
    padding: 40px 20px;
    margin-bottom: 100px;
    border-radius: 1rem;
}

#team .team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

#team .member {
    text-align: center;
    max-width: 300px;
}

#team .member a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

#team .member a:hover {
    opacity: 0.7;
    cursor: pointer;
}

#team .member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#team .member h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
}

#team .member p:first-of-type {
    font-weight: bold;
    margin-bottom: 10px;
}

#team .member p:last-of-type {
    font-size: 0.95em;
    line-height: 1.5;
    color: #9ca3af;
}