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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Subtle Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    z-index: -2;
}

.twinkling {
    display: none;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.logo {
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #6366f1;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-text:hover {
    background: #6366f1;
    color: white;
    transform: scale(1.05);
}

.title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #94a3b8;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.7s forwards;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.coming-soon .text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 400;
    color: #6366f1;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
}

.description {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.1s forwards;
}

/* Skills Section */
.skills-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.skills-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.skill-category h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #6366f1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(99, 102, 241, 0.2);
}

/* Experience Section */
.experience-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}

.experience-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.experience-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.experience-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.experience-header h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #6366f1;
    margin: 0;
}

.company {
    color: #f59e0b;
    font-weight: 500;
}

.duration {
    color: #94a3b8;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.experience-description {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Education Section */
.education-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
}

.education-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.education-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.education-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.education-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.education-header h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #6366f1;
    margin: 0;
}

.institution {
    color: #f59e0b;
    font-weight: 500;
}

.graduation {
    color: #94a3b8;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.education-description {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Languages Section */
.languages-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.languages-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.languages-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.language-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.language-name {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-level {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.6s forwards;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #6366f1;
}

.contact-item span {
    color: #94a3b8;
    font-size: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.countdown-item .number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.7s forwards;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Floating Elements - Removed for minimalistic design */
.floating-elements {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon .text {
        font-size: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skills-title,
    .experience-title,
    .education-title,
    .languages-title,
    .contact-title {
        font-size: 1.5rem;
    }
    
    .experience-header,
    .education-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .planet-1 {
        width: 60px;
        height: 60px;
        right: 10%;
    }
    
    .planet-2 {
        width: 40px;
        height: 40px;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .countdown {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 120px;
    }
}
