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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1e90ff;
    --secondary-color: #40e0d0;
    --accent-color: #00ced1;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --gradient-1: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    --gradient-2: linear-gradient(135deg, #40e0d0 0%, #00ced1 100%);
    --gradient-3: linear-gradient(135deg, #1e90ff 0%, #40e0d0 100%);
}

body {
    font-family: 'Fira Code', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, monospace;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
}

/* LEFT PANEL - Image Side */
.left-panel {
    position: fixed;
    left: 0;
    top: 0;
    width: 45%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    animation: panelFadeIn 0.8s ease-out both;
}

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

.left-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 80%, 
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
    z-index: 11;
    animation: borderSlideIn 1.5s ease-out 0.8s both, pulse-border 3s ease-in-out 2.3s infinite;
}

@keyframes borderSlideIn {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: center;
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.05) contrast(1.15) saturate(1.1) blur(0.3px) sharpen(1);
    animation: imageSlideIn 1.2s ease-out both;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: scale(1.1) translateX(-20px);
        filter: brightness(1.05) contrast(1.15) saturate(1.1) blur(2px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: brightness(1.05) contrast(1.15) saturate(1.1) blur(0.3px);
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.25) 0%, rgba(64, 224, 208, 0.3) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
    animation: overlayFadeIn 1s ease-out 0.3s both;
}

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


/* RIGHT PANEL - Content Side */
.right-panel {
    margin-left: 45%;
    width: 55%;
    min-height: 100vh;
    position: relative;
    background: var(--bg-darker);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Wobbly Background Blobs */
.wobbly-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: wobble 15s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    animation: wobble 12s ease-in-out infinite, move1 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(135deg, #40e0d0, #00ced1);
    animation: wobble 15s ease-in-out infinite reverse, move2 25s ease-in-out infinite;
}

.blob-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: -100px;
    background: linear-gradient(135deg, #1e90ff, #40e0d0);
    animation: wobble 18s ease-in-out infinite, move3 22s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    75% {
        border-radius: 70% 30% 50% 60% / 40% 70% 50% 30%;
    }
}

@keyframes move1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes move2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

@keyframes move3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -50px); }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(50px);
    }
}

/* Content Area */
.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem;
    animation: fadeInRight 1s ease-out;
    max-width: 700px;
}

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

/* Name */
.name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e90ff 0%, #40e0d0 50%, #00ced1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: -0.02em;
}

.name-part {
    display: inline-block;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Subtitle with Typing Effect */
.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    min-height: 2em;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.typing-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.coming-soon h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #40e0d0 0%, #00ced1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 300;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #1e90ff 0%, #40e0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}


/* Scroll Down Indicator */
.scroll-down-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1.6s both;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease;
}

.scroll-down-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* About Me Section */
.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #0a1628 100%);
    z-index: 2;
    width: 100%;
}

.about-content {
    max-width: 900px;
    width: 100%;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e90ff 0%, #40e0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-align: justify;
    max-width: 700px;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1.8rem;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
}

.about-text .intro {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
}

.about-text .mission {
    font-size: clamp(1rem, 2vw, 1.15rem);
    padding: 2rem;
    background: rgba(30, 144, 255, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    margin-top: 2.5rem;
    text-align: justify;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.1);
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.handle {
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .left-panel {
        width: 40%;
    }
    
    .right-panel {
        margin-left: 40%;
        width: 60%;
    }
    
    .content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        position: relative;
    }
    
    .left-panel {
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index: 1;
    }
    
    .left-panel::after {
        display: none;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 100%;
    }
    
    .right-panel {
        margin-left: 0;
        width: 100%;
        min-height: 200vh;
        margin-top: 80vh;
        position: relative;
        z-index: 2;
        background: linear-gradient(to bottom, transparent 0%, var(--bg-darker) 20%, var(--bg-darker) 100%);
        border-radius: 20px 20px 0 0;
    }
    
    .content {
        padding: 3rem 1.5rem 2rem;
        min-height: 100vh;
        background: transparent;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .name {
        text-align: center;
    }
    
    .subtitle {
        text-align: center;
    }
    
    .coming-soon {
        text-align: center;
        width: 100%;
    }
    
    .countdown {
        justify-content: center;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
        width: 100%;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text .intro {
        text-align: center;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    
    .blob-1, .blob-2, .blob-3 {
        width: 250px;
        height: 250px;
    }
    
    .scroll-down-indicator {
        bottom: 2rem;
        z-index: 3;
    }
    
    .about-section {
        padding: 4rem 1.5rem;
        background: var(--bg-darker);
    }
}

@media (max-width: 480px) {
    .right-panel {
        margin-top: 70vh;
    }
    
    .content {
        padding: 2rem 1rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center 30%;
        width: 100%;
        height: 130%;
        transform: translateY(-15%);
    }
    
    .about-section {
        padding: 2rem 1rem;
        background: var(--bg-darker);
    }
    
    .scroll-down-indicator {
        bottom: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .particles,
    .scroll-indicator {
        display: none;
    }
}
