* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Navigation Glass Effect */
.nav-glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

/* NEO Gradient with Oscillating Animation */
.neo-gradient {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75cm;
    font-weight: 600;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff9900, #ff00ff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: neon-glow 4s ease infinite;
}

@keyframes neon-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar Logo Image Glow */
.nav-glass img {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

/* Nav Items */
.nav-item {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.nav-item:hover,
.nav-item.active {
    color: #06b6d4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.nav-item.active::after {
    width: 100%;
}

.nav-item:hover::after {
    width: 100%;
}

/* Typewriter Cursor */
.cursor {
    animation: blink 1s step-end infinite;
    color: #06b6d4;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Hero Typewriter Text - Thin */
#typewriter {
    font-weight: 300 !important;
}

/* Hero Subtitle - Colorful Words */
.subtitle-word {
    display: inline-block;
    transition: all 0.3s ease;
    animation: float-word 3s ease-in-out infinite;
}

.subtitle-word.neural {
    color: #ff00ff;
    animation-delay: 0s;
}

.subtitle-word.entertainment {
    color: #00ffff;
    animation-delay: 0.3s;
}

.subtitle-word.others {
    color: #ff9900;
    animation-delay: 0.6s;
}

.subtitle-word:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 20px currentColor);
    text-shadow: 0 0 30px currentColor;
}

@keyframes float-word {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Bottom Blue Glow - Natural */
.bottom-glow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background: radial-gradient(ellipse 120% 80% at 50% 110%, 
        rgba(6, 182, 212, 0.15) 0%,
        rgba(6, 182, 212, 0.08) 30%,
        rgba(6, 182, 212, 0.03) 50%,
        transparent 75%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
    filter: blur(40px);
}

/* Glass Card Effect */
.glass-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 0 80px 0 rgba(6, 182, 212, 0.1),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 0 120px 0 rgba(6, 182, 212, 0.2),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Neon Text Effect */
.neon-text {
    color: #06b6d4;
    text-shadow: 
        0 0 10px rgba(6, 182, 212, 0.5),
        0 0 20px rgba(6, 182, 212, 0.3),
        0 0 30px rgba(6, 182, 212, 0.2);
}

/* Neon Link */
.neon-link {
    color: #06b6d4;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.neon-link:hover {
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.neon-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    opacity: 0.5;
}

/* Service Icon Animation */
.service-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Canvas */
#galaxy-canvas {
    z-index: -1;
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a1128 50%, #000000 100%);
    z-index: 9999;
    pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4, #3b82f6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
}

/* Responsive */
@media (max-width: 768px) {
    .neo-gradient {
        font-size: 1.5rem;
    }
    
    .glass-card {
        padding: 1.5rem !important;
    }
}

/* Content Page Styles */
.content-section {
    min-height: 60vh;
    padding: 8rem 1.5rem 4rem;
}

.content-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 0 80px 0 rgba(6, 182, 212, 0.1);
    transition: all 0.4s ease;
}

.content-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                0 0 120px 0 rgba(6, 182, 212, 0.2);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-item:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(6, 182, 212, 0.2);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(6, 182, 212, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li::before {
    content: '▹';
    color: #06b6d4;
    font-size: 1.5rem;
    font-weight: bold;
}

/* ================================
   FOOTER STYLES
   Professional & Modern
   ================================ */

.footer {
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    border-top: 1px solid rgba(0, 150, 255, 0.15);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Brand Section */
.brand-section {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #06b6d4;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #06b6d4;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #06b6d4;
    color: #06b6d4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.creator {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.creator-link {
    color: #06b6d4;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.creator-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #06b6d4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.creator-link:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.creator-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ================================
   FOOTER RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .brand-section {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}
