* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #0a0a0a;
    font-family: "Zalando Sans Expanded", sans-serif;
    color: #fff6e2;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: url('../img/cursor.png') 16 16, auto;
}

/* Cursor glow effect */
.cursor-glow {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 246, 226, 0.1);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100px;
    height: 100px;
    min-height: 44px;
}

.logo-img {
    height: 100%;
    width: 100%;
    transition: opacity 0.4s ease, filter 0.4s ease;
    object-fit: contain;
}

.logo-filled {
    opacity: 1;
}

.logo-outline {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.2) invert(1) drop-shadow(0 0 4px rgba(153, 118, 255, 0.6)) drop-shadow(0 0 8px rgba(153, 118, 255, 0.3));
}

.logo:hover .logo-filled {
    opacity: 0;
}

.logo:hover .logo-outline {
    opacity: 1;
}

.logo:hover {
    transform: scale(1.15);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #fff6e2;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #9976ff;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 60px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff6e2, #9976ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glow-text {
    background: linear-gradient(90deg, #9976ff, #fff6e2, #9976ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 3px rgba(255, 246, 226, 0.5)) drop-shadow(0 0 6px rgba(255, 246, 226, 0.3));
    display: block;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-tag {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(90deg, #9976ff, #fff6e2, #9976ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 246, 226, 0.5)) drop-shadow(0 0 6px rgba(255, 246, 226, 0.3));
}

.hero-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9976ff, transparent);
    margin: 0 auto 30px;
}

.hero-subtitle {
    font-size: 18px;
    color: #b8b8c8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: #9976ff;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    min-height: 44px;
}

.cta-button:hover {
    background-color: #fff6e2;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153, 118, 255, 0.3);
}

.work .cta-button {
    background-color: #fff6e2;
}

.work .cta-button:hover {
    background-color: #9976ff;
    color: #fff6e2;
}

.cta-button.large {
    padding: 18px 50px;
    font-size: 16px;
}

/* About Section */
.about {
    padding: 100px 40px;
    background-color: #0a0a0a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #9976ff;
}

.about-content p {
    font-size: 16px;
    color: #b8b8c8;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Work Section */
.work {
    padding: 100px 40px;
    background-color: #1a1a2e;
}

.work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
}

.work-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-image-box {
    flex: 0.8;
    min-height: 300px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.work-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.work h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 60px;
    color: #fff6e2;
}

.svg-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

svg {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

svg:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    background-color: #0a0a0a;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact h2 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact h2 span {
    display: block;
    color: #9976ff;
    margin-top: 10px;
}

.contact .cta-button {
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid rgba(255, 246, 226, 0.1);
    padding: 60px 40px 40px;
    color: #b8b8c8;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-image: url('../img/jdpattern.svg');
    background-repeat: repeat;
    background-size: 500px;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(1) sepia(1) hue-rotate(30deg) brightness(1.4);
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    transform: translate(-50%, -50%) rotate(15deg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-container h4 {
    color: #fff6e2;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-container ul {
    list-style: none;
}

.footer-container li,
.social-links a {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-container a {
    color: #b8b8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #9976ff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 246, 226, 0.1);
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: #b8b8c8;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #9976ff;
}

/* Contact Page */
.contact-page {
    margin-top: 80px;
    min-height: 100vh;
    background-color: #0a0a0a;
    padding: 80px 40px;
}

.contact-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-page-header h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff6e2, #9976ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-page-header p {
    font-size: 18px;
    color: #b8b8c8;
    letter-spacing: 0.5px;
}

.contact-page-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: #1a1a2e;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-image: url('../img/jdpattern.svg');
    background-repeat: repeat;
    background-size: 500px;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(1) sepia(1) hue-rotate(30deg) brightness(1.4);
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    transform: translate(-50%, -50%) rotate(35deg);
}

.contact-form {
    position: relative;
    z-index: 2;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #fff6e2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 246, 226, 0.2);
    color: #fff6e2;
    padding: 12px 15px;
    border-radius: 4px;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9976ff;
    background-color: rgba(153, 118, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .cta-button {
    align-self: flex-start;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 246, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-image: url('../img/jdpattern.svg');
    background-repeat: repeat;
    background-size: 500px;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(1) sepia(1) hue-rotate(30deg) brightness(1.4);
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    transform: translate(-50%, -50%) rotate(35deg);
}

.info-card h3,
.info-card p,
.info-card a,
.info-card .social-links-contact {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    color: #9976ff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 14px;
    color: #b8b8c8;
    line-height: 1.8;
}

.info-card a {
    color: #fff6e2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-card a:hover {
    color: #9976ff;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-contact a {
    display: inline-block;
    width: fit-content;
    color: #fff6e2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    filter: drop-shadow(0 0 4px rgba(255, 246, 226, 0.5)) drop-shadow(0 0 6px rgba(255, 246, 226, 0.3));
}

/* Work Page */
.work-page {
    margin-top: 80px;
    min-height: 100vh;
    background-color: #0a0a0a;
    padding: 80px 40px;
}

.work-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.work-page-header h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff6e2, #9976ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.work-page-header p {
    font-size: 18px;
    color: #b8b8c8;
    letter-spacing: 0.5px;
}

.work-page-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.work-item {
    background-color: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 246, 226, 0.2);
}

.work-item-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2a2a4e 0%, #1a1a3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 246, 226, 0.1);
    overflow: hidden;
}

.work-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #9976ff;
    letter-spacing: 1px;
}

.work-item-content {
    padding: 30px;
    text-align: center;
}

.work-item-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff6e2;
    margin-bottom: 12px;
}

.work-item-content p {
    font-size: 14px;
    color: #b8b8c8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.work-link {
    color: #9976ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: inline-block;
}

.work-link:hover {
    color: #fff6e2;
}

.work-page-cta {
    text-align: center;
    padding: 60px 40px;
    background-color: #1a1a2e;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.work-page-cta h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff6e2;
    margin-bottom: 15px;
}

.work-page-cta p {
    font-size: 16px;
    color: #b8b8c8;
    margin-bottom: 30px;
}

/* Buy Button */
.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #fff6e2;
    color: #0a0a0a;
    border: none;
    border-radius: 4px;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-decoration: none;
    min-height: 44px;
}

.buy-btn:hover {
    background-color: #e8d9c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 246, 226, 0.2);
}

.buy-btn:active {
    transform: translateY(0);
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .nav-container {
        padding: 5px 20px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero {
        padding: 40px 20px;
        margin-top: 70px;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-content h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .about-content p {
        font-size: 15px;
    }

    .work {
        padding: 60px 20px;
    }

    .work h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .work-content {
        gap: 30px;
        flex-direction: column;
    }

    .work-image-box {
        width: 100%;
        min-height: 250px;
    }

    .svg-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact {
        padding: 60px 20px;
        min-height: auto;
    }

    .contact h2 {
        font-size: 32px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        font-size: 11px;
    }

    .work-page {
        padding: 60px 20px;
    }

    .work-page-header {
        margin-bottom: 50px;
    }

    .work-page-header h1 {
        font-size: 36px;
    }

    .work-page-header p {
        font-size: 15px;
    }

    .work-page-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .work-item-image {
        height: 200px;
    }

    .work-item-content {
        padding: 20px;
    }

    .work-item-content h3 {
        font-size: 18px;
    }

    .work-page-cta {
        padding: 40px 20px;
    }

    .work-page-cta h2 {
        font-size: 28px;
    }

    .contact-page {
        padding: 60px 20px;
    }

    .contact-page-header {
        margin-bottom: 50px;
    }

    .contact-page-header h1 {
        font-size: 36px;
    }

    .contact-page-header p {
        font-size: 15px;
    }

    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 32px;
        font-size: 13px;
    }

    .buy-btn {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
    }
}

/* Responsive - Mobile Phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 8px 15px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .hero {
        padding: 30px 15px;
        margin-top: 60px;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .hero-content h1 span {
        margin-top: 8px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 11px 26px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .cta-button.large {
        padding: 12px 28px;
        font-size: 13px;
    }

    .about {
        padding: 50px 15px;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .work {
        padding: 50px 15px;
    }

    .work h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .work-content {
        gap: 20px;
    }

    .work-image-box {
        max-width: 100%;
        min-height: 200px;
    }

    .work-image-box img {
        width: 100%;
    }

    .svg-gallery {
        gap: 12px;
    }

    .contact {
        padding: 50px 15px;
    }

    .contact h2 {
        font-size: 28px;
    }

    .contact h2 span {
        margin-top: 5px;
    }

    .footer {
        padding: 30px 15px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer-container li,
    .social-links a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 10px;
        gap: 10px;
    }

    .work-page {
        padding: 50px 15px;
    }

    .work-page-header {
        margin-bottom: 40px;
    }

    .work-page-header h1 {
        font-size: 30px;
    }

    .work-page-header p {
        font-size: 14px;
    }

    .work-page-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .work-item {
        margin: 0;
    }

    .work-item-image {
        height: 180px;
    }

    .work-item-content {
        padding: 18px;
    }

    .work-item-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .work-item-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .placeholder {
        font-size: 18px;
    }

    .work-link {
        font-size: 13px;
    }

    .work-page-cta {
        padding: 30px 15px;
    }

    .work-page-cta h2 {
        font-size: 24px;
    }

    .work-page-cta p {
        font-size: 14px;
    }

    .buy-btn {
        padding: 13px 20px;
        font-size: 12px;
    }

    .contact-page {
        padding: 50px 15px;
    }

    .contact-page-header {
        margin-bottom: 40px;
    }

    .contact-page-header h1 {
        font-size: 30px;
    }

    .contact-page-header p {
        font-size: 14px;
    }

    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form-wrapper {
        padding: 20px 12px;
        background-color: #0a0a0a;
        border: 1px solid rgba(255, 246, 226, 0.1);
    }

    .contact-form {
        gap: 18px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 10px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .contact-form .cta-button {
        width: 100%;
    }

    .contact-info {
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 13px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */

/* Keyframe animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes - set starting state but no animation yet */
.fade-in,
.slide-up,
.slide-down,
.slide-left,
.slide-right,
.zoom-in,
.scale-up {
    opacity: 0;
}

/* Trigger animation - only run animation when this class is added */
.animate-in.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-in.slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-in.slide-down {
    animation: slideDown 0.8s ease forwards;
}

.animate-in.slide-left {
    animation: slideLeft 0.8s ease forwards;
}

.animate-in.slide-right {
    animation: slideRight 0.8s ease forwards;
}

.animate-in.zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

.animate-in.scale-up {
    animation: scaleUp 0.8s ease forwards;
}