
body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.content-overlay {
    position: relative;
    z-index: 10;
}

.gradient-text {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
}

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

.neon-border {
    border: 2px solid #ff00ff;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff;
}

.hover-glow:hover {
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
