/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffcc00;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px #ffcc00);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffcc00;
    text-shadow: 0 0 20px #ffcc00;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px #ffcc00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffcc00, #ffffff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffcc00;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    position: relative;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #ffcc00, #ffffff, #ffcc00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 204, 0, 0.5);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffcc00;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #cccccc;
    animation: slideUp 1s ease-out 1s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: slideUp 1s ease-out 1.5s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #ffcc00, #e6b800);
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 50px rgba(255, 204, 0, 0.5);
}

.btn-secondary {
    border: 2px solid #ffffff;
}

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

.btn-outline {
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.btn-outline:hover {
    background: #ffcc00;
    color: #000000;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: slideUp 1s ease-out 2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 0 20px #ffcc00;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    letter-spacing: 1px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffcc00;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-card:hover .card-icon {
    filter: none;
}

.about-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffcc00;
    letter-spacing: 1px;
}

.about-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.95);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    border-left: 4px solid #ffcc00;
    background: rgba(26, 26, 26, 0.8);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 204, 0, 0.1);
    transform: translateX(10px);
}

.feature-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffcc00;
    letter-spacing: 1px;
}

.feature-item p {
    color: #cccccc;
}

/* Status Section */
.status {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

.status-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.current-version {
    margin-bottom: 2rem;
}

.version-label {
    display: block;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.version-number {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 0 30px #ffcc00;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #333333;
    border-radius: 5px;
    margin: 3rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #e6b800);
    transition: width 2s ease;
    box-shadow: 0 0 20px #ffcc00;
}

.status-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 2px solid #ffcc00;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #333333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffcc00;
    border-color: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffcc00;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-email {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffcc00;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
    transition: left 0.5s;
}

.contact-email:hover::before {
    left: 100%;
}

.email-label {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffcc00;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.email-link {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ffcc00;
    text-shadow: 0 0 20px #ffcc00;
}

.footer-contact {
    display: flex;
    align-items: center;
}

.contact-email-footer {
    color: #ffcc00;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-email-footer:hover {
    text-shadow: 0 0 10px #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.glow {
    transition: all 0.3s ease;
}

.glow:hover {
    text-shadow: 0 0 20px #ffcc00;
    color: #ffcc00;
}
