/* ================= GLOBAL ================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #05040a;
    color: white;
    overflow-x: hidden;
}

/* Animated purple background */
body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, #6b5cff33, transparent 40%),
        radial-gradient(circle at 80% 60%, #a855ff33, transparent 40%),
        radial-gradient(circle at 50% 80%, #7c3aed33, transparent 40%);
    animation: bgMove 18s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-10%, -10%); }
    100% { transform: translate(0, 0); }
}

/* ================= BACKGROUND SYSTEMS ================= */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    z-index: 9999;
}

.spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(139, 92, 246, .18), transparent 60%);
    filter: blur(80px);
    z-index: -1;
}





/* ================= LOADER ================= */

#loader {
    position: fixed;
    inset: 0;
    background: #050507;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-size: 42px;
    letter-spacing: 8px;
    color: #a855f7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}

/* ================= INTRO GATE ================= */

.intro-gate {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #05040a;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease;
}

.intro-content {
    text-align: center;
}

.intro-logo {
    font-size: 72px;
    letter-spacing: 10px;
    font-weight: 800;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    line-height: 1.1;
    animation: logoGlow 3s ease-in-out infinite;
}

.intro-sub {
    text-align: center;
    color: #bdbdfc;
    margin-top: 10px;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 0px rgba(167, 139, 250, .2)); }
    50% { filter: drop-shadow(0 0 25px rgba(167, 139, 250, .6)); }
    100% { filter: drop-shadow(0 0 0px rgba(167, 139, 250, .2)); }
}

/* ================= NAVBAR ================= */

.nav {
    position: fixed;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 25, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    z-index: 1000;
    opacity: 1;
    transform: translateY(0);
    transition: .6s ease;
}

.nav.active {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.links {
    display: flex;
    gap: 20px;
}

.links a {
    color: #bdbdfc;
    text-decoration: none;
    transition: .3s;
}

.links a:hover {
    color: #ffffff;
}

/* ================= HERO ================= */

.hero {
    height: 110vh;
    display: flex;
    padding: 180px 8% 80px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%);
    transform-style: preserve-3d;
}

.hero-bg {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(circle at 30% 40%, #7c3aed33, transparent),
        radial-gradient(circle at 70% 60%, #a855ff33, transparent);
    animation: floatBg 14s ease-in-out infinite;
    z-index: -1;
    filter: blur(120px);
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}

/* .wipe {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* Update the existing .wipe and .reveal classes in your CSS */

.wipe {
    display: block;
    position: relative;
    overflow: hidden;
    /* Ensure the text has a base visibility so it doesn't flicker */
    opacity: 1 !important; 
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ensure the hero section doesn't hide itself once it has been seen */
.hero.reveal.active {
    opacity: 1 !important;
    transform: none !important;
}

.wipe div {
    pointer-events: none;
}

.hero-sub {
    color: #cfcfff;
    margin-top: 15px;
    font-size: 16px;
}

.hero-button a{
    display:contents;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #05040a);
    pointer-events: none;
}

/* ================= BUTTON ================= */

.primary {
    margin-top: 25px;
    padding: 14px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: white;
    font-weight: 600;
    transition: .35s;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px #8b5cf6aa;
}

/* ================= SECTIONS ================= */

.section {
    padding: 140px 80px;
    text-align: center;
    transform-style: preserve-3d;
}

.section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= CARDS ================= */

.card-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* .card {
    padding: 35px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(167, 139, 250, .15);
    transition: .45s;
    position: relative;
    opacity: 0;
    transform: translateY(70px) scale(.96);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 0 40px rgba(139, 92, 246, .45),
        inset 0 0 25px rgba(139, 92, 246, .2);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 15px;
}

.card p {
    color: #cfcfff;
    font-size: 14px;
    line-height: 1.6;
} */

/* ================= ABOUT ================= */

.about-container {
    display: flex;
    justify-content: center;
    gap: 120px;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
}

.about-left {
    max-width: 520px;
}

.about-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-left p {
    color: #cfcfff;
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-right {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.stat {
    padding: 28px 36px;
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, .2);
    opacity: 0;
    transform: translateY(70px) scale(.96);
    transition: transform .9s cubic-bezier(.16, 1, .3, 1), opacity .9s ease;
}

.stat.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat h3 {
    font-size: 36px;
    color: #c084fc;
    margin-bottom: 8px;
}

.stat span {
    color: #a78bfa;
    font-size: 14px;
}

/* ================= WHY CHOOSE US ================= */

.why {
    background: transparent;
}

.section-title {
    font-size: 48px;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.why-card {
    width: 300px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(139, 92, 246, .2);
    opacity: 0;
    transform: translateY(80px);
    transition: .4s;
}

.why-card.active {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    box-shadow: 0 0 60px rgba(139, 92, 246, .5);
    transform: translateY(-12px) scale(1.03);
}

.why-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
}

/* ================= PROCESS ================= */

.process {
    background: transparent;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.step-card {
    padding: 30px;
    width: 260px;
    background: rgba(255, 255, 255, .03);
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, .2);
    opacity: 0;
    transform: translateY(70px) scale(.96);
    transition: transform .9s cubic-bezier(.16, 1, .3, 1), opacity .9s ease;
    text-align: center;
}

.step-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #a78bfa;
}

.step-card p {
    color: #cfcfff;
    font-size: 13px;
    line-height: 1.5;
}

.arrow {
    font-size: 40px;
    color: #a78bfa;
}

/* ================= GAME PROFILES ================= */

.game-profiles {
    padding: 80px 8%;
    text-align: center;
}

/* ...existing code... */

.section-header {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(120px) scale(.96);
    transition: 1.2s cubic-bezier(.16, 1, .3, 1);
}

.section-header.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section-header h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ...existing code... */

.badge {
    display: inline-block;
    background: rgba(139, 92, 246, .2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.game-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(139, 92, 246, .15);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: .3s ease;
    text-align: left;
}

.game-card:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, .4);
    box-shadow: 0 0 30px rgba(139, 92, 246, .3);
}

.game-icon {
    background: rgba(139, 92, 246, .15);
    color: #a78bfa;
    padding: 10px;
    width: auto;
    height: auto;
    border-radius: 12px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: white;
}

.game-info p {
    color: #8383a3;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.status {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(34, 197, 94, .2);
    color: #22c55e;
    text-transform: uppercase;
    font-weight: 700;
}

.status.idle {
    background: rgba(234, 179, 8, .2);
    color: #eab308;
}

.status.offline {
    background: rgba(255, 255, 255, .1);
    color: #8383a3;
}

/* ================= STAFF ================= */

.staff {
    background: transparent;
}

.staff h2 {
    font-size: 48px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card {
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(167, 139, 250, .15);
    transition: .45s;
    position: relative;
    opacity: 0;
    transform: translateY(70px) scale(.96);
    display: flex;
    flex-direction: column;
}

.card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 0 40px rgba(139, 92, 246, .45),
        inset 0 0 25px rgba(139, 92, 246, .2);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 2px;
}

.card p {
    color: #cfcfff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: auto;
    background: rgba(139, 92, 246, .2);
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 10px;
    color: #fff;
    border: 1px solid rgba(139, 92, 246, .4);
    text-transform: uppercase;
    font-weight: 600;
}

.designation {
    color: #a78bfa;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.staff-email {
    display: inline-block;
    margin-top: auto;
    font-size: 13px;
    color: #8b5cf6;
    text-decoration: none;
    transition: .3s;
    opacity: 0.8;
}

.staff-email:hover {
    opacity: 1;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* ================= CTA ================= */

.cta {
    padding: 80px;
    text-align: center;
    background: linear-gradient(90deg, #140f2f, #1e124a);
    align-items: center;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(250% 175% at 50% 10%);
}

.cta h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #a78bfa, #c084fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

/* ================= FOOTER ================= */

.footer {
    background: #05040a;
    padding: 80px 60px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    text-align: left;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo img{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 10px;
    font-size: 24px;
}


.brand-header h2 {
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #8383a3;
    line-height: 1.6;
    font-size: 15px;
}

.footer-column h3 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-column a,
.footer-column .wip {
    display: block;
    color: #8383a3;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: .3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-privacy {
    font-size: 13px;
    margin-top: 15px;
}

.footer-privacy a {
    display: inline-block;
    color: #9e9edf;
    text-decoration: none;
    margin: 0 5px;
    transition: .3s;
}

.footer-privacy a:hover {
    color: #fff;
}

/* ================= REVEAL ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(120px) scale(.96);
    transition: 1.2s cubic-bezier(.16, 1, .3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature {
    opacity: 0;
    transform: translateY(60px);
    transition: .6s;
}

.feature.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MODAL ================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: .4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(139, 92, 246, .2);
    position: relative;
    transform: translateY(20px);
    transition: .4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#contactForm input,
#contactForm textarea {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(139, 92, 246, .2);
    padding: 12px;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: .3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: rgba(139, 92, 246, .5);
    background: rgba(255, 255, 255, .06);
}

/* ================= UTILITY ================= */

.grid-container {
    position: relative;
    z-index: 2;
    margin-top: -50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 8%;
    width: 100%;
}

.card a {
    cursor: grab;
}

/* ================= MOBILE OPTIMIZATIONS ================= */

/* ================= MOBILE OPTIMIZATIONS ================= */

/* ================= MOBILE OPTIMIZATIONS ================= */

/* ================= MOBILE OPTIMIZATIONS ================= */

@media (max-width: 768px) {
    /* 1. Fix "PALLADIUM WORKS" Intro Logo */
    .intro-logo {
        font-size: 28px !important; /* Shrunk significantly to prevent horizontal scroll */
        letter-spacing: 3px !important; 
        text-align: center;
        display: block;
        width: 100vw;
        padding: 0 10px;
    }
    .arrow {
        font-size: 30px !important;
        rotate: 90deg; /* Flip arrows for better mobile flow */
    }
    /* 2. Fix Hero "Legendary" Text Clipping */
    .hero::before {
        padding: 100px 15px 40px !important;
        height: auto !important;
        min-height: 70vh;
    }

    .loader-text {
        font-size: 28px !important;
        letter-spacing: 4px !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    .hero-title {
        font-size: 28px !important; /* Shrunk to 28px to ensure it fits any phone width */
        line-height: 1.3 !important;
        width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-sub {
        font-size: 14px !important;
        padding: 0 10px;
    }

    /* 3. Fix Oversized Cards & Grid */
    .grid-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 15px !important;
        margin-top: 10px !important;
        gap: 15px !important;
    }

    .card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 180px !important; /* Reduced from 280px */
        padding: 20px !important;
        transform: none !important; /* Removing hover transform to prevent clipping on touch */
    }

    .card h3 {
        font-size: 18px !important;
    }

    /* 4. Fix Footer Layout */
    .footer {
        padding: 40px 20px !important;
    }

    /* ================= MOBILE OPTIMIZATIONS ================= */
    /* Fix: Navigation Scrollable Left-to-Right */
    .nav {
        padding: 12px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px !important;
    }

    .logo {
        flex-shrink: 0 !important; /* Prevents logo from squishing */
        z-index: 10;
        background: inherit; /* Matches nav background */
    }

    .nav .links {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 20px !important;
        padding: 5px 0;
        -webkit-overflow-scrolling: touch;
        
        /* The Shadow Fade Effect */
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent 100%);
        
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }

    .logo {
        flex-shrink: 0 !important; /* Prevent logo from squishing */
        margin-right: 20px !important;
        font-size: 12px !important;
        letter-spacing: 2px !important;
    }


    .nav .links::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    /* Fix: Intro/Hero Text Clipping */
    .intro-logo, .hero-title {
        font-size: 30px !important;
        width: 100% !important;
        text-align: center !important;
        word-wrap: break-word !important;
    }

    /* Fix: Grid and Card Oversizing */
    .grid-container {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    .card {
        width: 100% !important;
        min-height: auto !important;
        align-content: center !important;
    }

    /* Fix: Footer Clipping */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-column a {
        white-space: normal !important;
    }


    /* Fix Section Headers */
    .section h2, 
    .section-header h2,
    .section-title {
        font-size: 26px !important; /* Keeps headers small enough for phone screens */
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.email{
    color: #a855f7;
}