* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.space-mono-regular {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.space-mono-bold {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.space-mono-regular-italic {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.space-mono-bold-italic {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: italic;
}

body {
    background-color: #000000;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader.fade-out {
    opacity: 0;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-name {
    font-size: 48px;
    font-weight: 100;
    color: white;
    margin: 0;
    margin-bottom: 8px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1), breathe 2s ease-in-out 0.8s infinite;
}

.loader-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #d0d0d0;
    margin: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes breathe {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 40px solid #080808;
    box-shadow: inset 0 0 0 0.5px #ffffff;
    z-index: 9999;
    pointer-events: none;
}

.portfolio-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 80px 80px 40px 80px;
    color: white;
}

.header-content {
    margin-bottom: 60px;
}

.name {
    font-size: 56px;
    font-weight: 100;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 16px;
    color: #d0d0d0;
    margin: 0;
    font-weight: 300;
}

.nav-menu {
    margin-top: 30px;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.nav-menu li {
    margin-bottom: 12px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav-menu a:hover {
    color: #888;
    transform: translateX(3px);
}

.projects-panel {
    position: absolute;
    right: 80px;
    top: 40px;
    bottom: 40px;
    z-index: 20;
    max-width: 600px;
    overflow-y: auto;
    color: white;
    display: none;
    padding-top: 180px;
    padding-bottom: 200px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-panel.showing {
    opacity: 1;
    transform: translateX(0);
}

.projects-panel.hiding {
    opacity: 0;
    transform: translateX(30px);
}

.projects-panel::-webkit-scrollbar {
    display: none;
}

.projects-panel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-item {
    margin-bottom: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.project-item:nth-child(1) {
    animation-delay: 0.1s;
}

.project-item:nth-child(2) {
    animation-delay: 0.2s;
}

.project-item:nth-child(3) {
    animation-delay: 0.3s;
}

.project-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-item.active {
    opacity: 1;
}

.project-item:hover {
    opacity: 1;
}

.project-title {
    font-size: 64px;
    font-weight: 100;
    margin: 0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
    position: relative;
}

.project-link::after {
    content: '↗';
    font-size: 0.3em;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 100;
}

.project-link:hover {
    color: #ffffff;
}

.project-link:hover::after {
    opacity: 1;
    transform: translate(3px, -3px);
}

.project-item:hover .project-title {
    color: #ffffff;
    transform: translateX(-3px);
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-badge {
    border: 1px solid #666;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-badge:hover {
    border-color: #999;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.project-description {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    font-weight: 600;
    line-height: 1.7;
}

.project-date {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    font-weight: 500;
}

.contact-panel {
    position: absolute;
    left: 80px;
    bottom: 80px;
    z-index: 20;
    display: none;
    gap: 30px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.contact-link:hover {
    opacity: 1;
}

.contact-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-text {
    font-size: 14px;
    font-weight: 500;
}

.contact-display-panel {
    position: absolute;
    right: 80px;
    top: 220px;
    z-index: 20;
    max-width: 600px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    color: white;
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-display-panel.showing {
    opacity: 1;
    transform: translateX(0);
}

.contact-display-panel.hiding {
    opacity: 0;
    transform: translateX(30px);
}

.contact-display-item {
    margin-bottom: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    text-decoration: none;
    display: block;
    color: inherit;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.contact-display-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-display-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-display-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-display-item.active {
    opacity: 1;
}

.contact-display-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.contact-display-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-display-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 16px;
}

.linkedin-logo {
    width: 56px;
    height: 56px;
}

.contact-display-text {
    flex: 1;
}

.contact-display-title {
    font-size: 64px;
    font-weight: 100;
    margin: 0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-display-item:hover .contact-display-title {
    color: #ffffff;
    transform: translateX(-3px);
}

.contact-display-link {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    font-weight: 600;
}

.about-display-panel {
    position: absolute;
    right: 80px;
    top: 250px;
    z-index: 20;
    max-width: 450px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    color: white;
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-display-panel::-webkit-scrollbar {
    display: none;
}

.about-display-panel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.about-display-panel.showing {
    opacity: 1;
    transform: translateX(0);
}

.about-display-panel.hiding {
    opacity: 0;
    transform: translateX(30px);
}

.about-display-title {
    font-size: 64px;
    font-weight: 100;
    margin: 0;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.about-display-text {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about-display-text:nth-child(1) {
    animation-delay: 0.1s;
}

.about-display-text:nth-child(2) {
    animation-delay: 0.2s;
}

.about-display-text:nth-child(3) {
    animation-delay: 0.3s;
}

.about-display-text:nth-child(4) {
    animation-delay: 0.4s;
}

.achievements-panel {
    position: absolute;
    right: 80px;
    top: 40px;
    bottom: 40px;
    z-index: 20;
    max-width: 600px;
    overflow-y: auto;
    color: white;
    display: none;
    padding-top: 180px;
    padding-bottom: 200px;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievements-panel.showing {
    opacity: 1;
    transform: translateX(0);
}

.achievements-panel.hiding {
    opacity: 0;
    transform: translateX(30px);
}

.achievements-panel::-webkit-scrollbar {
    display: none;
}

.achievements-panel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.achievement-item {
    margin-bottom: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.achievement-item:nth-child(1) {
    animation-delay: 0.1s;
}

.achievement-item:nth-child(2) {
    animation-delay: 0.2s;
}

.achievement-item:nth-child(3) {
    animation-delay: 0.3s;
}

.achievement-item:nth-child(4) {
    animation-delay: 0.4s;
}

.achievement-item:nth-child(5) {
    animation-delay: 0.5s;
}

.achievement-item:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.achievement-title {
    font-size: 64px;
    font-weight: 100;
    margin: 0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-item:hover .achievement-title {
    color: #ffffff;
    transform: translateX(-3px);
}

.achievement-description {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    font-weight: 600;
    line-height: 1.7;
}

.resume-panel {
    position: absolute;
    right: 80px;
    top: 250px;
    z-index: 20;
    max-width: 600px;
    color: white;
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resume-panel.showing {
    opacity: 1;
    transform: translateX(0);
}

.resume-panel.hiding {
    opacity: 0;
    transform: translateX(30px);
}

.resume-link {
    display: block;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.resume-link:hover {
    transform: translateX(-5px);
}

.resume-content {
    position: relative;
}

.resume-title {
    font-size: 64px;
    font-weight: 100;
    margin: 0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resume-link:hover .resume-title {
    color: #ffffff;
    transform: translateX(-3px);
}

.resume-description {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.7;
}

.resume-icon {
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resume-link:hover .resume-icon {
    opacity: 1;
    transform: translateY(-3px);
}

.container {
    flex: 1;
    width: 100%;
    border: none;
    background-color: #0a0a0a;
    position: relative;
    opacity: 0.90;
}

/* Music Player Styles */
.music-player-container {
    position: fixed;
    bottom: 45px;
    left: 5px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.music-player-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    width: 24px;
    height: 24px;
}

.music-player-btn:hover {
    transform: scale(1.1);
}

.music-player-btn.playing .play-icon,
.music-player-btn.playing .pause-icon {
    animation: rotateIcon 3s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.play-icon,
.pause-icon {
    transition: opacity 0.3s ease;
    width: 24px;
    height: 24px;
}

.music-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(180deg) translateY(10px);
}

.music-title.show {
    opacity: 1;
    visibility: visible;
    transform: rotate(180deg) translateY(0);
}

/* Mobile background image - hidden by default */
.mobile-bg-image {
    display: none;
}

/* Hide Unicorn Studio branding */
.unicorn-studio-branding,
.us-branding,
a[href*="unicorn.studio"],
button[title*="Unicorn"],
div[title*="Unicorn"],
div[data-us-project] a[href*="unicorn.studio"] {
    display: none !important;
}

/* Crop the bottom to hide branding */
div[data-us-project] {
    height: calc(100% - -70px) !important;
    overflow: hidden !important;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    body::before {
        display: none;
    }

    /* Hide music player on mobile */
    .music-player-container {
        display: none !important;
    }

    .portfolio-wrapper {
        overflow-y: auto;
    }

    .container {
        position: fixed;
        z-index: 1;
        opacity: 0.6;
    }

    /* Hide Unicorn embed on mobile */
    .container>div[data-us-project] {
        display: none !important;
    }

    /* Show background image on mobile */
    .mobile-bg-image {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.6;
    }

    .header {
        padding: 60px 30px 20px 30px;
        position: relative;
        z-index: 15;
        text-align: center;
    }

    .header-content {
        margin-bottom: 0;
    }

    .name {
        font-size: 36px;
        letter-spacing: 0.5px;
    }

    .subtitle {
        font-size: 14px;
    }

    /* Hide desktop nav */
    .nav-menu {
        display: none;
    }

    .projects-panel {
        position: static;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        max-width: 100%;
        padding: 30px;
        padding-top: 20px;
        padding-bottom: 120px;
        margin-top: 0;
        z-index: 15;
    }

    .project-item {
        margin-bottom: 40px;
    }

    .project-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .project-tech-stack {
        gap: 8px;
        margin-bottom: 15px;
    }

    .tech-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .project-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .contact-display-panel {
        position: static;
        right: auto;
        left: auto;
        top: auto;
        max-width: 100%;
        padding: 30px;
        padding-top: 20px;
        margin-top: 0;
        z-index: 15;
    }

    .contact-display-item {
        margin-bottom: 40px;
    }

    .contact-display-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .contact-display-link {
        font-size: 11px;
    }

    .about-display-panel {
        position: static;
        right: auto;
        left: auto;
        top: auto;
        max-width: 100%;
        padding: 30px;
        padding-top: 20px;
        margin-top: 0;
        z-index: 15;
    }

    .about-display-text {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .achievements-panel {
        position: static;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        max-width: 100%;
        padding: 30px;
        padding-top: 20px;
        padding-bottom: 120px;
        margin-top: 0;
        z-index: 15;
    }

    .achievement-item {
        margin-bottom: 40px;
    }

    .achievement-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .achievement-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .resume-panel {
        position: static;
        right: auto;
        left: auto;
        top: auto;
        max-width: 100%;
        padding: 30px;
        padding-top: 20px;
        padding-bottom: 120px;
        margin-top: 0;
        z-index: 15;
    }

    .resume-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .resume-description {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .resume-icon svg {
        width: 36px;
        height: 36px;
    }

    .contact-panel {
        left: 30px;
        bottom: 40px;
    }

    .contact-logo {
        width: 20px;
        height: 20px;
    }

    .contact-text {
        font-size: 12px;
    }

    /* Bottom glassmorphic navigation */
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 9998;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        padding: 15px 5px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .mobile-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
        border-radius: 0;
        pointer-events: none;
    }

    .mobile-nav ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-nav li {
        margin: 0;
    }

    .mobile-nav a {
        color: white;
        text-decoration: none;
        font-size: 10px;
        font-weight: 500;
        padding: 8px 8px;
        display: block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Loading screen adjustments for mobile */
    .loader-name {
        font-size: 32px;
    }

    .loader-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

/* Hide mobile nav on desktop */
@media screen and (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    body::before {
        display: none;
    }

    .header {
        padding: 50px 20px 15px 20px;
    }

    .name {
        font-size: 28px;
    }

    .subtitle {
        font-size: 12px;
    }

    .projects-panel {
        padding: 20px;
        padding-bottom: 100px;
    }

    .project-title {
        font-size: 28px;
    }

    .project-description {
        font-size: 11px;
    }

    .tech-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .contact-display-panel,
    .about-display-panel {
        padding: 20px;
        padding-bottom: 100px;
    }

    .contact-display-title {
        font-size: 28px;
    }

    .about-display-text {
        font-size: 11px;
    }

    .achievements-panel {
        padding: 20px;
        padding-bottom: 100px;
    }

    .achievement-title {
        font-size: 28px;
    }

    .achievement-description {
        font-size: 11px;
    }

    .resume-panel {
        padding: 20px;
        padding-bottom: 100px;
    }

    .resume-title {
        font-size: 28px;
    }

    .resume-description {
        font-size: 11px;
    }

    .resume-icon svg {
        width: 32px;
        height: 32px;
    }

    .mobile-nav a {
        font-size: 9px;
        padding: 6px 6px;
    }
}