@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4a9eff;
    --primary-dark: #3a7ecf;
    --text: #ffffff;
    --text-secondary: #dddddd;
    --background: #0f0f12;
    --card-bg: rgba(25, 25, 35, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 10%, #1a1a25 0%, var(--background) 80%);
    cursor: none;
}

.cursor-highlight {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    filter: blur(5px);
    transition: width 0.3s ease, height 0.3s ease;
}
.a {
    color: white;
}

.cursor-dot {
    position: fixed;
    width: 24px;
    height: 24px;
    background-image: url('icons/logo.ico');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}


a, button, input, select, textarea, [role="button"] {
    cursor: none;
}

.interactive:hover ~ .cursor-highlight {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
}

.interactive:hover ~ .cursor-dot {
    transform: translate(-50%, -50%) scale(1.3);
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.content {
    display: flex;
    width: 100%;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text);
    display: inline-block;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.text-box {
    flex: 1;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.text-box:hover {
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.image-box {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

.image-box img {
    max-width: 250px;
    border-radius: 10px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.image-box img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

.avatar {
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.profile-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section.active .text-box {
    opacity: 1;
    transform: translateY(0);
}

.section.active .image-box {
    opacity: 1;
    transform: translateX(0);
}

.glow {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    transition: transform 0.3s ease;
}

.glow-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    z-index: -1;
    transition: transform 0.3s ease;
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 100;
    font-size: 1.5rem;
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .image-box {
        order: -1;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .cursor-highlight, .cursor-dot {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}