body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
        
.ninja-text {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}
        
.card-hover {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}
        
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
}
        
.social-icon {
    transition: all 0.3s ease;
}
        
.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.8));
}
        
.platform-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
        
.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
    transition: 0.5s;
}
        
.platform-btn:hover::before {
    left: 100%;
}
        
.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}
        
.ninja-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #39FF14, transparent);
}
        
.ninja-logo {
    animation: glow 2s ease-in-out infinite alternate;
}
        
.custom-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
        
.custom-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}
        
.ninja-pattern {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 20%);
}
        
.typewriter {
    overflow: hidden;
    border-right: .15em solid #39FF14;
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}
        
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
        
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #39FF14 }
}
		
@media (max-width: 475px) {
	.stop-text {
		display: none !important;
	}
}

@font-face {
    font-family: 'Exo 2';
    src: url('fonts/Exo2-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Exo 2';
    src: url('fonts/Exo2-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Exo 2';
    src: url('fonts/Exo2-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('fonts/Rajdhani-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('fonts/Rajdhani-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('fonts/Rajdhani-Bold.ttf') format('truetype');
    font-weight: 700;
}