/* ===== CSS Variables ===== */
:root {
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(0, 0%, 12%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 12%);
    --primary: hsl(18, 100%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 20%, 96%);
    --secondary-foreground: hsl(0, 0%, 12%);
    --muted: hsl(210, 15%, 94%);
    --muted-foreground: hsl(0, 0%, 45%);
    --border: hsl(0, 0%, 90%);
    --radius: 0.75rem;
    
    --gradient-primary: linear-gradient(135deg, hsl(18, 100%, 60%) 0%, hsl(0, 100%, 50%) 100%);
    --shadow-soft: 0 4px 20px -4px hsla(0, 0%, 0%, 0.08);
    --shadow-elevated: 0 20px 50px -12px hsla(18, 100%, 60%, 0.25);
    --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.1);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem ! important;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic {
    font-style: italic;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-elevated);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-with-icon svg {
    margin-left: 0.25rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: blob 8s ease-in-out infinite;
}

.blob-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: hsla(18, 100%, 60%, 0.1);
}

.blob-2 {
    top: 50%;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: hsla(18, 100%, 60%, 0.05);
    animation-delay: 2s;
}

.blob-3 {
    bottom: -10rem;
    right: 33%;
    width: 20rem;
    height: 20rem;
    background: hsla(18, 100%, 60%, 0.08);
    animation-delay: 4s;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    opacity: 0.8;
}

.circle-2 {
    bottom: 10rem;
    right: 5rem;
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.6;
    animation-delay: 2s;
}

.circle-3 {
    top: 33%;
    right: 25%;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.4;
    animation-delay: 4s;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f97316' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-intro {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    color: hsla(0, 0%, 12%, 0.8);
    margin-bottom: 0.5rem;
}

.hero-description {
    max-width: 36rem;
    margin: 1.5rem auto 2.5rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

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

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--border);
    display: none;
}

@media (min-width: 640px) {
    .stat-divider { display: block; }
}

.scroll-indicator {
    position: absolute;
    bottom: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted-foreground);
    animation: bounce 2s infinite;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    color: var(--primary);
}

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-bg-decor {
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.about-bg-circle {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 1rem;
    transform: rotate(3deg);
    opacity: 0.2;
}

.about-image-frame {
    position: relative;
    background: var(--gradient-primary);
    padding: 4px;
    border-radius: 1rem;
    box-shadow: var(--shadow-elevated);
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 0.75rem;
}

.experience-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.experience-number {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
}

.experience-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.section-label {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--muted-foreground);
}

.about-text p {
    margin-bottom: 1rem;
}

.skills {
    margin-top: 2.5rem;
}

.skill {
    margin-bottom: 1rem;
}

.skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.skill-icon {
    color: var(--primary);
}

.skill-percent {
    color: var(--primary);
    font-weight: 500;
}

.skill-bar {
    height: 0.5rem;
    background: var(--muted);
    border-radius: 9999px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 9999px;
    transition: width 1s ease-out;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* ===== Projects Section ===== */
.projects {
    padding: 6rem 0;
    background: hsla(210, 20%, 96%, 0.3);
    position: relative;
    overflow: hidden;
}

.projects-bg-1 {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 10rem;
    height: 10rem;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(60px);
}

.projects-bg-2 {
    position: absolute;
    bottom: 5rem;
    right: 0;
    width: 15rem;
    height: 15rem;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(60px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--muted-foreground);
}

/* Slideshow */
.slideshow-wrapper {
    position: relative;
    padding: 0 3rem;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--card);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.slideshow-btn:hover {
    color: var(--primary);
    box-shadow: var(--shadow-elevated);
}

.slideshow-prev { left: 0; }
.slideshow-next { right: 0; }

.slideshow-container {
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.project-slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .project-slide { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
    .project-slide { flex: 0 0 33.333%; }
}

.project-card {
    background: var(--card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: Transparent;
    transition: var(--transition-smooth);
    display: block;
}

.project-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-elevated);
}

.project-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(0, 0%, 12%, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    color: var(--primary-foreground);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 500;
}

.project-content {
    padding: 1.25rem;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card:hover .project-title {
    color: var(--primary);
}

/* Hide slideshow buttons on mobile */
@media (max-width: 639px) {
    .slideshow-btn {
        display: none;
    }
    .slideshow-wrapper {
        padding: 0;
    }
}

.slideshow-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: var(--muted);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.indicator.active {
    width: 2rem;
    background: var(--primary);
}

.indicator:hover {
    background: hsla(18, 100%, 60%, 0.5);
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: hsla(18, 100%, 60%, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.contact-bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: hsla(18, 100%, 60%, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px -2px hsla(18, 100%, 55%, 0.9);
}

.contact-item:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-item-label {
    font-weight: 500;
}

.contact-item-value {
    color: var(--muted-foreground);
}

.contact-item-link {
    color: var(--muted-foreground);
    transition: var(--transition-smooth);
}

.contact-item-link:hover {
    color: var(--primary);
}

.social-section {
    margin-bottom: 2rem;
}

.social-label {
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.1);
}

.thanks-card {
    padding: 2rem;
    background: linear-gradient(to bottom right, hsla(18, 100%, 60%, 0.1), hsla(18, 100%, 60%, 0.05));
    border-radius: 1rem;
}

.thanks-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.thanks-text {
    color: var(--muted-foreground);
}

.contact-form-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(18, 100%, 60%, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Footer ===== */
.footer {
    padding: 2rem 0;
    background: var(--foreground);
    color: var(--primary-foreground);
}

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-text { color: var(--primary-foreground); }
.footer-logo-accent { color: var(--primary); }

.footer-copyright {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.heart-icon {
    color: var(--primary);
}

.footer-back-to-top {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: var(--transition-smooth);
}

.footer-back-to-top:hover {
    color: var(--primary);
}

/* ===== Follow Section ===== */
.follow-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

.follow-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.8;
    filter: blur(2px);
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.follow-blob-1 {
    top: 5rem;
    right: -4rem;
    width: 10rem;
    height: 10rem;
}

.follow-blob-2 {
    bottom: 8rem;
    left: -4rem;
    width: 8rem;
    height: 8rem;
}

.follow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.follow-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.follow-profile {
    margin-bottom: 2.5rem;
}

.follow-profile-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 6px;
    background: var(--gradient-primary);
    box-shadow: 0 10px 40px -10px hsla(18, 100%, 60%, 0.4);
}

.follow-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.follow-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--secondary);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.follow-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.1);
}

.follow-btn svg {
    width: 20px;
    height: 20px;
}

.follow-btn-telegram {
    margin-bottom: 2rem;
}

.follow-tagline {
    font-size: 1.125rem;
    color: black;
    margin-bottom: 2rem;
    max-width: 20rem;
}

.btn-get-in-touch {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    gap: 0.75rem;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elevated);
    padding: 1rem 1.5rem;
    transform: translateY(150%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-title {
    font-weight: 600;
    font-size: 0.875rem;
}

.toast-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(-20px, -15px) scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(18, 100%, 50%);
}
