/* ===== CSS Variables ===== */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-color: #0f0f1e;
    --bg-secondary: #1a1a2e;
    --text-color: #e4e4e7;
    --text-secondary: #a1a1aa;
    --card-bg: rgba(26, 26, 46, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* ===== Custom Cursor ===== */
.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

.cursor {
    background: var(--gradient-1);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

body:hover .cursor {
    transform: scale(1.5);
}

/* ===== Animated Background ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: backgroundMove 20s ease infinite;
    z-index: -1;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(5%, 5%); }
    50% { transform: translate(-5%, 5%); }
    75% { transform: translate(5%, -5%); }
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== Section Title ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-number {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 2.5rem;
}

.cursor-blink {
    animation: blink 1s infinite;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
}

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

.btn-secondary:hover {
    border-color: var(--primary-color);
}

.btn span,
.btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== Hero Visual ===== */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.card-icon svg {
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

.card-text {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-paragraph {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.skills-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.skill-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.skill-item span {
    font-size: 0.9rem;
}

.skill-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 8px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

/* ===== Projects Section ===== */
.projects {
    padding: 8rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    transition: var(--transition);
}

.project-link:hover {
    background: white;
    color: var(--bg-color);
}

.project-info {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Experience Section (Timeline) ===== */
.experience {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.experience-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.experience-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: 3px solid var(--bg-color);
    z-index: 1;
}

.timeline-content {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-role {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.timeline-location {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.timeline-highlights {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.timeline-highlights li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.timeline-highlights li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hospitality-systems {
    max-width: 900px;
    margin: 4rem auto 0;
}

.hospitality-systems .skills-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hospitality-systems .systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.hospitality-systems .system-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}

.hospitality-systems .system-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.hospitality-systems .system-name {
    font-weight: 600;
    color: var(--text-color);
}

/* ===== Tech Section ===== */
.tech {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.tech-content {
    max-width: 900px;
    margin: 0 auto;
}

.tech-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tech-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.tech-skills-section,
.tech-systems {
    margin-bottom: 3rem;
}

.tech-skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.system-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}

.system-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.system-name {
    font-weight: 600;
    color: var(--text-color);
}

/* ===== Contact Section ===== */
.contact {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 600;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.875rem;
    background: var(--bg-secondary);
    padding: 0 0.5rem;
    color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    border: none;
    background: var(--gradient-1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-text {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-year {
    margin-top: 0.5rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content,
    .about-content,
    .projects-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 6rem 5% 3rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .about,
    .experience,
    .tech,
    .contact {
        padding: 4rem 0;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-image {
        height: 200px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        animation: slideInLeft 0.6s ease;
    }

    .title-number {
        font-size: 1.25rem;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 5% 2rem;
        min-height: 85vh;
        background: linear-gradient(135deg, rgba(16, 20, 31, 0.95) 0%, rgba(10, 25, 47, 0.98) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
        animation: pulse 8s ease-in-out infinite;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .hero-title {
        animation: slideInUp 0.8s ease;
    }
    
    .hero-subtitle {
        animation: slideInUp 0.8s ease 0.2s backwards;
    }
    
    .typing-text {
        animation: slideInUp 0.8s ease 0.4s backwards;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        animation: slideInUp 0.8s ease 0.6s backwards;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(100, 255, 218, 0.2);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn:active::before {
        width: 300px;
        height: 300px;
    }
    
    .btn:active {
        transform: translateY(2px);
        box-shadow: 0 4px 12px rgba(100, 255, 218, 0.3);
    }

    .hero-visual {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* Navigation */
    .nav {
        padding: 1rem 4%;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-logo {
        font-size: 1.25rem;
        font-weight: 700;
    }

    /* About Section */
    .about {
        background: linear-gradient(180deg, rgba(10, 25, 47, 0.5) 0%, rgba(16, 20, 31, 0.8) 100%);
    }
    
    .about-paragraph {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .stat-item {
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(100, 255, 218, 0.02) 100%);
        border: 1px solid rgba(100, 255, 218, 0.2);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .stat-item:active {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(100, 255, 218, 0.2);
    }

    .stat-number {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
    }

    .skills-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skill-item {
        padding: 1.25rem;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(100, 255, 218, 0.02) 100%);
        border: 1px solid rgba(100, 255, 218, 0.15);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .skill-item:active {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(100, 255, 218, 0.15);
        border-color: rgba(100, 255, 218, 0.3);
    }

    .skill-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .skill-item span {
        font-size: 1rem;
        font-weight: 600;
    }

    /* Projects Section */
    .projects {
        background: linear-gradient(180deg, rgba(16, 20, 31, 0.8) 0%, rgba(10, 25, 47, 0.5) 100%);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(100, 255, 218, 0.1);
        transition: all 0.4s ease;
    }
    
    .project-card:active {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(100, 255, 218, 0.2);
        border-color: rgba(100, 255, 218, 0.3);
    }

    .project-image {
        height: 220px;
        position: relative;
        overflow: hidden;
    }
    
    .project-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(16, 20, 31, 0.8) 100%);
    }

    .project-info {
        padding: 1.75rem;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.03) 0%, rgba(100, 255, 218, 0.01) 100%);
    }

    .project-title {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .project-description {
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .project-tags {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 8px;
        background: rgba(100, 255, 218, 0.1);
        border: 1px solid rgba(100, 255, 218, 0.2);
    }

    /* Experience Timeline */
    .experience {
        background: linear-gradient(180deg, rgba(10, 25, 47, 0.5) 0%, rgba(16, 20, 31, 0.8) 100%);
    }
    
    .experience-intro-description {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .timeline::before {
        left: 15px;
        background: linear-gradient(180deg, #64ffda 0%, rgba(100, 255, 218, 0.3) 100%);
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 2.5rem;
    }

    .timeline-dot {
        left: 6px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.5), 0 0 40px rgba(100, 255, 218, 0.3);
        border: 3px solid #0a192f;
    }

    .timeline-content {
        padding: 1.75rem;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(100, 255, 218, 0.02) 100%);
        border: 1px solid rgba(100, 255, 218, 0.15);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .timeline-content:active {
        transform: translateX(5px);
        box-shadow: 0 12px 40px rgba(100, 255, 218, 0.15);
        border-color: rgba(100, 255, 218, 0.3);
    }

    .timeline-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .timeline-role {
        font-size: 1.05rem;
        font-weight: 600;
        color: #64ffda;
    }
    
    .timeline-location {
        font-size: 0.95rem;
        opacity: 0.8;
    }

    .timeline-highlights li {
        font-size: 0.95rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Hospitality Systems */
    .hospitality-systems {
        margin-top: 3rem;
    }
    
    .hospitality-systems .systems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .system-item {
        padding: 1.25rem;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(100, 255, 218, 0.02) 100%);
        border: 1px solid rgba(100, 255, 218, 0.15);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .system-item:active {
        transform: scale(1.05);
        box-shadow: 0 8px 28px rgba(100, 255, 218, 0.15);
        border-color: rgba(100, 255, 218, 0.3);
    }
    
    .system-name {
        font-size: 1rem;
        font-weight: 600;
    }

    /* Contact Section */
    .contact {
        background: linear-gradient(180deg, rgba(16, 20, 31, 0.8) 0%, rgba(10, 25, 47, 0.95) 100%);
    }
    
    .contact-heading {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .contact-description {
        font-size: 1.05rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.8);
    }

    .contact-item {
        padding: 1.25rem;
        gap: 1.25rem;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(100, 255, 218, 0.02) 100%);
        border: 1px solid rgba(100, 255, 218, 0.15);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .contact-item:active {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(100, 255, 218, 0.2);
        border-color: rgba(100, 255, 218, 0.3);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 20px rgba(100, 255, 218, 0.3);
    }

    .contact-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .contact-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #64ffda;
    }
    
    .contact-value {
        font-size: 1rem;
        font-weight: 600;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.03) 0%, rgba(100, 255, 218, 0.01) 100%);
        border: 1px solid rgba(100, 255, 218, 0.1);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .form-group {
        margin-bottom: 1.75rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid rgba(100, 255, 218, 0.2);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #64ffda;
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
    }
    
    .btn-submit {
        width: 100%;
        padding: 1.25rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(100, 255, 218, 0.3);
    }
    
    .btn-submit:active {
        transform: translateY(2px);
        box-shadow: 0 4px 16px rgba(100, 255, 218, 0.4);
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
        background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(16, 20, 31, 1) 100%);
        border-top: 1px solid rgba(100, 255, 218, 0.1);
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .social-link {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(100, 255, 218, 0.05) 100%);
        border: 1px solid rgba(100, 255, 218, 0.2);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .social-link:active {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 24px rgba(100, 255, 218, 0.3);
        border-color: rgba(100, 255, 218, 0.4);
    }

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

    /* Disable custom cursor on mobile */
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    /* Improve touch targets */
    .nav-link,
    .btn,
    .social-link,
    .contact-item {
        min-height: 48px;
    }

    /* Better spacing */
    .about,
    .projects,
    .experience,
    .contact {
        padding: 3rem 0;
    }

    /* Mobile Projects */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image {
        height: 180px;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.25rem;
    }

    .project-description {
        font-size: 0.95rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .container {
        padding: 0 4%;
    }

    /* Mobile Experience Timeline */
    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
        margin-bottom: 1.5rem;
    }

    .timeline-dot {
        left: 2px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-header {
        flex-direction: column;
        gap: 0.25rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-role {
        font-size: 0.95rem;
    }

    .timeline-location {
        font-size: 0.875rem;
    }

    .timeline-highlights li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    /* Mobile Hospitality Systems */
    .hospitality-systems .systems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* ===== Coming Soon Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 20, 31, 0.98) 0%, rgba(10, 25, 47, 0.98) 100%);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(100, 255, 218, 0.1);
    animation: modalSlideIn 0.4s ease;
    z-index: 10001;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: #64ffda;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.modal-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(100, 255, 218, 0.05) 100%);
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    color: #64ffda;
    animation: pulse 2s ease-in-out infinite;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.03);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.modal-feature svg {
    color: #64ffda;
    flex-shrink: 0;
}

.modal-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
    color: #0a192f;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(100, 255, 218, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(100, 255, 218, 0.4);
}

.modal-btn:active {
    transform: translateY(0);
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal Styles */
@media (max-width: 640px) {
    .modal-content {
        padding: 2.5rem 1.5rem;
        max-width: 90%;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .modal-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .stat-item {
        animation: scaleIn 0.6s ease forwards;
    }
    
    .stat-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .stat-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .stat-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .skill-item {
        animation: slideInUp 0.5s ease forwards;
        opacity: 0;
    }
    
    .skill-item:nth-child(1) { animation-delay: 0.1s; }
    .skill-item:nth-child(2) { animation-delay: 0.15s; }
    .skill-item:nth-child(3) { animation-delay: 0.2s; }
    .skill-item:nth-child(4) { animation-delay: 0.25s; }
    .skill-item:nth-child(5) { animation-delay: 0.3s; }
    .skill-item:nth-child(6) { animation-delay: 0.35s; }
    .skill-item:nth-child(7) { animation-delay: 0.4s; }
    .skill-item:nth-child(8) { animation-delay: 0.45s; }
    .skill-item:nth-child(9) { animation-delay: 0.5s; }
    
    .project-card {
        animation: slideInUp 0.6s ease forwards;
        opacity: 0;
    }
    
    .project-card:nth-child(1) { animation-delay: 0.1s; }
    .project-card:nth-child(2) { animation-delay: 0.2s; }
    .project-card:nth-child(3) { animation-delay: 0.3s; }
    .project-card:nth-child(4) { animation-delay: 0.4s; }
    
    .timeline-item {
        animation: slideInLeft 0.6s ease forwards;
        opacity: 0;
    }
    
    .timeline-item:nth-child(1) { animation-delay: 0.1s; }
    .timeline-item:nth-child(2) { animation-delay: 0.2s; }
    .timeline-item:nth-child(3) { animation-delay: 0.3s; }
    .timeline-item:nth-child(4) { animation-delay: 0.4s; }
    .timeline-item:nth-child(5) { animation-delay: 0.5s; }
    
    .contact-item {
        animation: scaleIn 0.5s ease forwards;
        opacity: 0;
    }
    
    .contact-item:nth-child(1) { animation-delay: 0.1s; }
    .contact-item:nth-child(2) { animation-delay: 0.2s; }
    .contact-item:nth-child(3) { animation-delay: 0.3s; }
    
    .system-item {
        animation: scaleIn 0.4s ease forwards;
        opacity: 0;
    }
    
    .system-item:nth-child(1) { animation-delay: 0.1s; }
    .system-item:nth-child(2) { animation-delay: 0.15s; }
    .system-item:nth-child(3) { animation-delay: 0.2s; }
    .system-item:nth-child(4) { animation-delay: 0.25s; }
}

/* ===== Mobile Touch Improvements ===== */
@media (hover: none) and (pointer: coarse) {
    /* Better touch feedback */
    .btn:active,
    .nav-link:active,
    .social-link:active,
    .project-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    /* Remove hover effects on touch devices */
    .project-card:hover {
        transform: none;
    }

    .skill-item:hover {
        transform: none;
    }

    .contact-item:hover {
        transform: none;
    }

    /* Larger text for better readability */
    body {
        font-size: 16px;
    }

    /* Better button sizing */
    .btn {
        min-height: 48px;
        font-size: 1rem;
    }

    /* Mobile project card interactions */
    .project-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(100, 255, 218, 0.2);
    }
    
    .project-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.75);
        pointer-events: auto;
    }
    
    .project-link {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(100, 255, 218, 0.3);
        display: inline-block;
        background: rgba(100, 255, 218, 0.1);
        border: 2px solid #64ffda;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .project-link:active {
        background: rgba(100, 255, 218, 0.2);
        transform: scale(0.95);
    }
}

