* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent: #ffffff;
    --accent-dim: #e0e0e0;
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    cursor: none !important;
}

a, button, input, textarea, select {
    cursor: none !important;
}

* {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease-out, width 0.2s, height 0.2s;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    gap: 30px;
    animation: slideInUp 0.8s ease-out;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--text-dim);
    color: var(--text);
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn svg {
    display: block;
}

.lang-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.lang-btn.active {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06) 4px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    animation: slideInUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 30px;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.4s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.about {
    background: var(--bg-secondary);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.skills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.skill-item {
    padding: 10px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--accent);
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.skill-item svg {
    flex-shrink: 0;
}

.skill-item:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.skill-item:hover svg {
    transform: scale(1.1);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--accent-dim) 100%);
    transition: transform 0.4s;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.project-info p {
    color: var(--text-dim);
}

.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact-content {
    text-align: center;
}

.contact-link {
    display: inline-block;
    font-size: 2rem;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.contact-link:hover {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.social-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 1px solid var(--text-dim);
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.corner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.corner-image img {
    width: 200px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.corner-image:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .corner-image img {
        width: 120px;
    }
}


.pricing {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid var(--bg-secondary);
    transition: all 0.3s;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.pricing-card.disabled {
    opacity: 0.5;
    filter: grayscale(100%);
}

.pricing-card.disabled h3 {
    color: var(--text-dim);
}

.level-badge {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 10px;
}

.price-usd {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    padding: 10px 0;
    color: var(--text-dim);
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}


/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--bg-secondary);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--accent);
}

.theme-icon {
    font-size: 1.5rem;
}

body.light-theme {
    --bg-dark: #ffffff;
    --bg-secondary: #f8f9fa;
    --accent: #1a1a1a;
    --accent-dim: #2a2a2a;
    --text: #1a1a1a;
    --text-dim: #4a4a4a;
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .hero-bg {
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 26, 26, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 26, 26, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(26, 26, 26, 0.1) 0%, transparent 40%);
}

body.light-theme .hero-bg::before {
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 26, 26, 0.06) 2px, rgba(26, 26, 26, 0.06) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(26, 26, 26, 0.06) 2px, rgba(26, 26, 26, 0.06) 4px);
}

body.light-theme .project-card,
body.light-theme .pricing-card,
body.light-theme .faq-item {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body.light-theme .project-card::before {
    background: linear-gradient(135deg, transparent, rgba(26, 26, 26, 0.15));
}

body.light-theme .project-card:hover {
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.3);
}

body.light-theme .tech-item:hover {
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.4);
}

body.light-theme .available-badge {
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
}

body.light-theme .lang-btn.active {
    background: rgba(26, 26, 26, 0.2);
}

body.light-theme .cta-button {
    border-color: var(--accent);
    color: var(--accent);
}

body.light-theme .cta-button::before {
    background: var(--accent);
}

body.light-theme .cta-button:hover {
    color: #ffffff;
}

body.light-theme .theme-toggle {
    background: var(--bg-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .scroll-top {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}

body.light-theme .cursor {
    border-color: var(--accent);
}

body.light-theme .cursor-follower {
    background: var(--accent);
}

body.light-theme .theme-icon::before {
    content: '☀️';
}

body.light-theme .theme-icon {
    font-size: 0;
}

body.light-theme .theme-icon::before {
    font-size: 1.5rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: bold;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1) translateY(-5px);
}

/* FAQ Section */
.faq {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 25px;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text);
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out;
    padding: 0 25px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-dim);
    line-height: 1.6;
}


.faq-item.warning {
    border: 2px solid #ff6b6b;
}

.faq-item.warning .faq-question {
    color: #ff6b6b;
}

.faq-item.warning .faq-icon {
    color: #ff6b6b;
}


/* Stats Section */
.stats {
    background: var(--bg-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Skills Section Improvements */
.skills-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 30px 0 20px;
}

.skills-tech {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 10px;
    transition: all 0.3s;
    min-width: 100px;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.tech-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.skills-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-bar {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.progress {
    width: 100%;
    height: 10px;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
    border-radius: 10px;
    transition: width 1s ease-out;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

body.light-theme .tech-item {
    background: var(--bg-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-theme .progress {
    background: #e0e0e0;
}


.working-hours p {
    margin-bottom: 10px;
}

.working-hours .note {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
}


/* Available Badge */
.available-badge {
    position: fixed;
    top: 170px;
    right: 30px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    border-radius: 25px;
    padding: 10px 20px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.available-badge:hover {
    transform: scale(1.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* Process Section */
.process {
    background: var(--bg-secondary);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-dark);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    flex: 0 1 220px;
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.process-arrow {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    opacity: 0.3;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.8rem;
}

.footer-text {
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    color: var(--text-dim);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--bg-secondary);
    color: var(--text-dim);
}

body.light-theme .available-badge {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .process-step {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .available-badge {
        top: auto;
        bottom: 100px;
        right: 20px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .process-grid {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}


.about-description br {
    display: block;
    content: "";
    margin-top: 10px;
}

.thanks-note {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-dim);
    font-size: 0.95rem;
}


/* Scroll Animations */
.focus-toggle {
    position: fixed;
    top: 240px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.focus-toggle:hover {
    transform: scale(1.1);
    background: var(--accent);
}

.focus-icon {
    font-size: 1.5rem;
}

.focus-toggle {
    position: fixed;
    top: 240px;
    right: 30px;
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border: none;
    border-radius: 30px;
    cursor: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
    overflow: hidden;
}

.focus-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
}

.focus-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.focus-toggle::before {
    content: '✨';
    position: absolute;
    font-size: 1rem;
    animation: sparkle 2s infinite;
}

.focus-toggle::after {
    content: '✨';
    position: absolute;
    font-size: 0.8rem;
    animation: sparkle 2s infinite 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(20px, -10px) scale(1);
    }
}

body.light-theme .focus-toggle {
    background: linear-gradient(135deg, #a569bd 0%, #9b59b6 100%);
}

/* Focus Mode Styles */
body.focus-mode .navbar,
body.focus-mode .theme-toggle,
body.focus-mode .available-badge,
body.focus-mode .scroll-top,
body.focus-mode .cursor,
body.focus-mode .cursor-follower,
body.focus-mode .hero-bg {
    opacity: 0.3 !important;
    pointer-events: none;
}

body.focus-mode .focus-toggle {
    opacity: 1 !important;
    pointer-events: all;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .lang-switcher {
        gap: 5px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .available-badge {
        top: auto;
        bottom: 100px;
        right: 20px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        top: 80px;
        right: 20px;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .skills-tech {
        justify-content: center;
    }
    
    .tech-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .corner-image img {
        width: 120px;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    body,
    a, button, input, textarea, select {
        cursor: auto !important;
    }
}


/* Language transition animation */
[data-uk], [data-en] {
    transition: font-family 0.5s ease, opacity 0.5s ease;
}


.project-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.project-link:hover {
    transform: translateX(5px);
}


/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Glow Animation */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent); }
    50% { box-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent); }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Rotate Animation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Typing Animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particle Animation */
@keyframes particle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
