/*Frame Moldura*/
.frame {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 40;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 1px 1px #222);
}
.frame-portrait{
    display: none;
}

body {
    margin: 0;
    font-family: 'Orbitron', Arial, sans-serif;
    background: #111;
    min-height: 100vh;
    overflow: hidden;
}


/*Logo*/
.logo-btn {
    background: none;
    border: none;
    padding: 0;
    position: fixed;
    top: 1.5vh;
    left: 2.5vw;
    z-index: 50;
}

.logo-btn img {
    display: block;
    width: 5vw; 
    height: auto;
    cursor: pointer;
    background: transparent;
}


/*Navbar*/
.navbar {
    display: flex;
    align-items: flex-start;
    position: fixed;
    top: 2.5vh;
    left: 7.5vw;  
    z-index: 30;
    gap: 0; 
}

.nav-btn {
    position: relative;
    width: 18vw;      /* Só o ícone visível por padrão */
    height: 10vh;
    background: none;
    border: none;
    margin-left: -18px; /* Sobreposição pra fazer o step */
    padding: 0;
    overflow: visible;
    cursor: pointer;
    transition: width 0.32s cubic-bezier(.42,.24,.58,1.15);
    clip-path: polygon(
        0 0, 100% 0, 70% 100%, 0% 150%
    );
    filter: drop-shadow(5px 0px 5px #222);
}

.nav-btn:first-child { 
    margin-left: 0; 
}

.nav-btn .nav-bg {
    position: absolute;
    inset: 0;
    background: #b30000;
    z-index: 1;
    clip-path: inherit;
}

.nav-btn .nav-icon {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.nav-btn .nav-icon img {
    width: auto; 
    height: 50%;
}

.nav-btn .nav-label {
    position: absolute;
    left: 62px;
    top: 0;
    height: 58px;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.22rem;
    font-weight: 800;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.13s, left 0.32s cubic-bezier(.51,.2,.6,1.24);
}

.nav-btn.expanded {
    width: 300px; /* Largura suficiente para label */
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0% 100%); /* Retira recorte para expandido */
    z-index: 32;
}

.nav-btn.expanded .nav-label {
    opacity: 1;
    top: 5px;
    left: 135px;
    transition-delay: 0.12s;
}

.nav-btn.expanded .nav-icon{
    left: -40px;
}

#nav-btn-about{
    filter: drop-shadow(5px 0px 2px #222);
    z-index: 30;
}

#nav-btn-project{
    left: -5vw;
    filter: drop-shadow(5px 0px 2px #222);
    z-index: 25;
}

#nav-btn-contact{
    left: -10vw;
    filter: drop-shadow(5px 0px 2px #222);
    z-index: 20;
}


/*Home*/
.clock {
    position: absolute;
    top: 32px;
    right: 70px;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    z-index: 32;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

.cyberpunk-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #c0c0c0;
    opacity: 0.11;
    pointer-events: none;
    user-select: none;
    font-family: "Big Shoulders Stencil", sans-serif;
}


/*Box Contents*/
main {
    position: relative;
    z-index: 25;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3vh;
}

.page-section {
    display: none;
    width: 70vw;
    max-width: 100vw;
    min-height: 60vh;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.page-section.active {
    display: flex;
}

.content-box {
    width: 200vw;              /* largura fixa */
    height: 67vh;             /* altura fixa */
    border: 2px solid #f00;
    background: rgba(10,10,10,0.96);
    color: #fff;
    padding: 36px 32px;
    font-size: 1.22rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 0px;
    overflow: auto;
    box-shadow: 0 4px 40px #ff003334;
}

.start-btn {
    display: flex;
    position: relative;
    border: 2px solid #b10000;
    background: #111;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 2.1rem;
    letter-spacing: 1px;
    padding: 0.5em 1em;
    margin-top: 65vh;
    margin-left: 60vw;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.start-btn:hover {
    background: #b10000;
    color: #111;
}

/*Info Section*/
#info{
    z-index: 34;

}

#info-content{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}

.about-left {
    flex: 1 1 0;
    padding: 42px 32px 32px 42px;
    color: #fff;
    font-size: 1.24rem;
    font-family: 'Orbitron', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.4;
    font-weight: 400;
}

.about-left strong {
    font-size: 1.23em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.about-right {
    width: 340px;
    padding: 32px 36px 32px 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
}

.img-frame {
    width: 295px;         /* igual ao SVG exportado! */
    height: 370px;        /* igual ao SVG exportado! */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 40px #ff003334;
}

.about-photo {
    width: 95%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.frame-overlay {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.close-btn {
    position: absolute;
    top: -2vh;
    right: 0vw;
    background: transparent;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 5;
    padding: 3px 9px;
    transition: color .18s;
    color: #b10000;
    border: 2px solid #b10000;
}

.close-btn:hover {
    color: #ff0033;
}

.splash-in { /* Efeito splash ao abrir */
    animation: splashEffect .32s cubic-bezier(.23,.5,.58,1.21) 1;
}

@keyframes splashEffect {
    0%   { filter: brightness(1.5) blur(2.5px); opacity: 0.95; }
    20%  { filter: brightness(2.1) blur(0.5px); opacity: 1; }
    40%  { filter: brightness(0.95) blur(0px); opacity: 1; }
    50%  { filter: brightness(1.3); }
    70%  { filter: none; }
    100% { filter: none; opacity: 1; }
}

/* About Content */

#about2{
    scrollbar-color: #eb0d0d #111;
}

.about2-section {
    margin-bottom: 38px;
    text-align: justify;
}

.about2-section h3,
.about2-section h4 {
    color: #fff;
    font-family: 'Orbitron', Arial, sans-serif;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1.2px;
}

.about2-section h3 {
    font-size: 1.5rem;
}

.about2-section h4 {
    font-size: 1.17rem;
    margin-bottom: 24px;
}

.about2-section p,
.about2-section ul {
    color: #fff;
    font-size: 1.08rem;
    font-family: 'Montserrat', 'Orbitron', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.about2-quote {
    color: #fff;
    font-style: italic;
    font-size: 1.11rem;
    margin-bottom: 13px;
    font-family: 'Orbitron', Arial, sans-serif;
}

.stacks-section {
    border: 2px solid #ff2222;
    border-radius: 7px;
    padding: 22px 18px 28px 18px;
    background: #141418;
    margin-bottom: 38px;
}

.stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin: 0 auto;
    margin-top: 6px;
}

.stack-item {
    background: #b90016;
    color: #fff;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 6px;
    box-shadow: 0 1px 8px #ff003477;
    border: none;
    transition: transform .15s, box-shadow .15s;
    letter-spacing: 1.1px;
}

.stack-item:hover {
    transform: scale(1.07);
    box-shadow: 0 3px 22px #ff0034aa;
}

.tech-section {
    border: 2px solid #ff2222;
    border-radius: 7px;
    background: #151516;
    padding: 26px 14px 32px 14px;
}

.tech-section h4 {
    margin-bottom: 26px;
}

.tech-legend {
    color: #ff2222;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.4px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 34px 34px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 1px 12px #ff00341a;
}

.tech-item {
    background: #18181c;
    border: 2px solid #ff2222;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 0 10px 0;
    box-shadow: 0 1px 12px #ff00341a;
    transition: transform .17s, border-color .17s, box-shadow .17s;
}

.tech-item:hover {
    transform: scale(1.08);
    border-color: #fff;
    box-shadow: 0 4px 24px #ff222266;
}

.tech-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 12px;
}

.tech-item span {
    color: #ff2222;
    font-family: 'Orbitron', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.7px;
    text-shadow: 0 2px 8px #000;
}


/*Porject Section*/
#project-content-box{
    display: flex;
    overflow: hidden;
    padding-right: 3%;
    padding-left: 2%;
}

.projects-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    top: 10vh;
    padding: 1vh 1vw 1vh 1vw;
    background: transparent;
    min-width: 6vw !important;
    max-height:65vh !important;
    overflow-y: auto;
    overflow-x: hidden;
    direction: rtl;
    scrollbar-color: #eb0d0d #111;
    scrollbar-width: thin;
/* overflow-y: scroll !important; */
}

.projects-sidebar > * { 
    direction: ltr; 
}

.projects-sidebar::-webkit-scrollbar {
    width: 9px;
    background: #191919;
}

.projects-sidebar::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 8px;
    border: 2px solid #090909;
}

.projects-sidebar::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

.project-btn {
    min-width: 6vw;
    min-height: 5vw;
    border: 0.18vw solid #ff0000;
    background: #090909;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2vh;
    transition: background 0.18s, border 0.18s;
    cursor: pointer;
    padding: 0;
}

.project-btn.active,
.project-btn:focus {
    background: #ff0000;
    border-color: #fff;
}

.project-btn img {
    width: 3vw;
    height: 3vw;
    min-width: 36px;
    min-height: 36px;
    max-width: 70px;
    max-height: 70px;
    display: block;
    transition: filter 0.18s;
    object-fit: contain;
}

.projects-content {
    flex: 1;
    padding: 3vh 1vw 3vh 0.5vw;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.project-box {
    display: none;
    width: 100%;
    height: 100%;
    border: 0.15vw solid #ff0000;
    padding: 2vw 2vw;
    padding-right: 1%;
    background: #090909;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.5vw;
    color: #ff0000;
    text-align: center;
    min-width: 57vw;
    min-height: 60vh;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: opacity 0.2s;
    opacity: 0;
    z-index: 1;
    border-radius: 0.5vw;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.project-box.active {
    display: flex;
    opacity: 1;
    z-index: 2;
}

.select-msg-box {
    justify-content: center;
    align-items: center;
    font-size: 2.2vw;
    color: #b30017;
    opacity: 0.8;
}

.project-detail {
    display: flex;
    gap: 1vw;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.project-info {
    flex: 1;
    color: #fff;
    background: transparent;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15vw;
    text-align: justify;
    border-right: 0.18vw solid #ff0000;
    padding-right: 2vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    max-width: 30% !important;
}

.project-info h2 {
    color: #ff0000;
    font-family: 'Orbitron', Arial, sans-serif;
    margin-top: 0;
    margin-bottom: 1vw;
    font-size: 1.35vw;
}

.project-img {
    flex: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1vw;
    padding-right: 1vw !important;
    max-width: 500px;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 110vw;
    height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: none;
    margin: 0 auto;
    padding: 0px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-img {
    display: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    border: 2px solid #222;
    background: #191919;
    z-index: 0;
}

.carousel-img.active {
    display: block;
}

.carousel-btn {
    background: transparent;
    color: #ff2222;
    border: none;
    font-size: 2.5rem;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    padding: 0;
    border-radius: 5px;
    z-index: 2;
    user-select: none;
}


/* Contact Content*/
.contact-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10vh;
}

.contact-icons-row {
    display: flex;
    gap: 64px;
    margin-bottom: 42px;
}

.contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border: 3px solid #b10000;
    border-radius: 4px;
    background: #090909;
    transition: background 0.22s, border 0.2s, box-shadow 0.18s;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 0 #ff0000;
}

.contact-icon-link:hover, .contact-icon-link:focus {
    border-color: #ff0000;
    box-shadow: 0 0 12px #ff000099, 0 0 36px #ff000088;
} 

.contact-icon-link img {
    width: 65px;
    height: 65px;
    transition: fill 0.18s;
}

.contact-icon-link:hover svg {
    fill: #fff;
}

.contact-email-box {
    margin-top: 26px;
    border: 3px solid #b10000;
    padding: 18px 32px 18px 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    background: #090909;
    gap: 18px;
}

.contact-email-box img {
    height: 10vh;
    object-fit: contain;

}

.contact-email-box svg {
    width: 48px;
    height: 48px;
    fill: #ff0000;
}

@media (min-width: 1601px) {
    /*Navbar*/
    .nav-btn {
        width: 15vw;      /* Só o ícone visível por padrão */
        height: 10vh;
        margin-left: -18px; /* Sobreposição pra fazer o step */
        padding: 0;
        transition: width 0.32s cubic-bezier(.42,.24,.58,1.15);
        clip-path: polygon(
            0 0, 100% 0, 70% 100%, 0% 150%
        );
    }

    .nav-btn .nav-label {
        left: 5vw;
        top: 2vh;
        height: 58px;
    }

    .nav-btn.expanded {
        width: 20vw; /* Largura suficiente para label */
        clip-path: polygon(0 0, 100% 0, 72% 100%, 0% 100%); /* Retira recorte para expandido */
    }

    .nav-btn.expanded .nav-label {
        top: 2vh;
        left: 10vw;
    }


    /*Home*/
    .clock {
        position: absolute;
        top: 5vh;
        right: 70px;
        color: #fff;
        font-size: 2rem;
        font-weight: 900;
        z-index: 32;
        font-family: 'Orbitron', monospace;
        letter-spacing: 1px;
    }


    /*Info Section*/
    .img-frame {
        top: 10vh;
        width: 295px;         /* igual ao SVG exportado! */
        height: 370px;        /* igual ao SVG exportado! */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 40px #ff003334;
    }
    .about-right {
        width: 340px;
        padding: 32px 36px 32px 8px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        position: relative;
    }


    /*Project Section*/
    .project-img {
        padding-left: 0vw;
        padding-right: 0.2vw !important;
        max-width:150vw;
    }
    .carousel {
        width: 100%;
        max-width: 130vw;
        height: 50vh;
        padding: 0px;
    }
      
}

/* --- Celulares --- */
@media (max-width: 600px){
    /*Frame Moldura*/
    .frame {
        display: none;
    }
    .frame-portrait{
        display: block;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100%;
        z-index: 40;
        pointer-events: none;
        user-select: none;
        filter: drop-shadow(0 1px 1px #222);
    }
    /*Logo*/
    .logo-btn {
        top: 3vh;
        left: 1vw;

    }

    .logo-btn img {
        width: 16vw;
    }


    /*Navbar*/
    .navbar {
        top: 1.51vh;
        left: 17vw;  
    }
    
    .nav-btn {
        width: 19vw;      /* Só o ícone visível por padrão */
        height: 11vh;
        margin-left: -18px; /* Sobreposição pra fazer o step */
        clip-path: none;
    }
    
    .nav-btn:first-child { 
        margin-left: 0; 
    }
    
    .nav-btn .nav-icon {
        height: 100%;
    }
          
    .nav-btn .nav-label {
        left: 62px;
        top: 0;
        height: 9vh;
        font-family: 'Orbitron', monospace;
        font-size: 1rem;
        font-weight: 800;
    }
    
    .nav-btn.expanded {
        width: 40vw;
        clip-path: none; /* Retira recorte para expandido */
    }
    
    .nav-btn.expanded .nav-label {
        top: 1.5vh;
        left: 12vw;
    }
    
    .nav-btn.expanded .nav-icon{
        left: -50px;
    }
    
    .nav-btn.expanded .nav-icon img{
        width: 7vw;
        height: auto;
    }
    
    #nav-btn-about{
        filter: drop-shadow(1px 0px 1px #222);
        z-index: 30;
    }
    
    #nav-btn-project{
        left: 4vw;
        filter: drop-shadow(1px 0px 1px #222);
        z-index: 25;
    }
    
    #nav-btn-contact{
        left: 8vw;
        filter: drop-shadow(1px 0px 1px #222);
        z-index: 20;
    }
    /*Home*/
    .clock {
        position: absolute;
        top: 13vh;
        right: 10vh;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 900;
        z-index: 32;
        font-family: 'Orbitron', monospace;
        letter-spacing: 1px;
    }


    /*Box Contents*/
    main {
        position: relative;
        z-index: 25;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 6vh;
    }

    .page-section {
        width: 85vw;
        max-width: 80vw;
        min-height: 60vh;
    }


    .content-box {
        width: 200vw;              /* largura fixa */
        height: 67vh;             /* altura fixa */
        padding: 36px 32px;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.5;
        border-radius: 0px;
        overflow: auto;
    }

    .start-btn {
        font-size: 1.3rem;        
        margin-top: 65vh;
        margin-left: 40vw;
        top: -3vh;
        left: -1vw;   
    }


    /*Info Section*/

    #info-content{
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
    }

    .about-left {
        top: 150vh;
        order: 1;
        flex: 1 1 0;
        padding: 0;
        text-align: justify;
        font-size: 1.1rem;

    }

    .about-left strong {
        font-size: 1.23em;
        font-weight: 900;
        color: #fff;
        letter-spacing: 1px;
    }

    .about-right {
        order: 0;
        width: 300px;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        background: none;
    }

    .img-frame {
        
        top: 4vh;
        width: 75%;         /* igual ao SVG exportado! */
        height: 90%;        /* igual ao SVG exportado! */
        background: none;
        
    }

    .about-photo {
        width: 60vw;
        height: 100%;
    }


    .close-btn {
        top: -2vh;
        right: 20vw;
        font-size: 1.1rem;
        padding: 3px 9px;
    }


    /*Porject Section*/
    #project-content-box{
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: scroll;
        padding-top: 1vh;
    }
    .projects-sidebar::before{
        content: "Arraste para o lado";
        font-size: 0.9em;
        font-weight: 50;
        text-align: center;
        display:block;
        position:relative;
    }
    .projects-sidebar {
        display: flex;
        flex-direction: row-reverse;
        gap: 2vh;
        top: 10vh;
        padding: 1vh 1vw 1vh 1vw;
        overflow-y: hidden;
        overflow-x: auto;
    }
    .project-btn {
        min-width: 15vw;
        min-height: 13vw;
        margin-bottom: 1.2vh;
        padding: 0;
    }

    .project-btn img {
        width: 3vw;
        height: 3vw;
        object-fit: contain;
    }

    .project-box {
        padding: 2vw 2vw;
        padding-right: 1%;
        font-size: 2.5vw;
        min-width: 57vw;
        min-height: 60vh;
        top: 0; left: 0; right: 0; bottom: 0;
    }

    .select-msg-box {
        font-size: 1.5em;
    }

    .project-detail {
        flex-direction: column;
    }

    .project-info {
        font-size: 1.5em;
        text-align: justify;
        padding-right: 2vw;
        flex-direction: column;
        max-width: 100% !important;
        border-right: none;
    }

    .project-info h2 {
        margin-bottom: 1vw;
        font-size: 1.5em;
    }

    .project-img {
        padding:0;
        max-width: 600px;
    }

    .carousel {
        width: 100%;
        max-width: 110vw;
        height: 20vh;
    }

    .carousel-btn {
        font-size: 1.5rem;
    }



    /* Contact Content*/
    .contact-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 10vh;
    }

    .contact-icons-row {
        display: flex;
        gap: 10vw;
        margin-bottom: 42px;
    }

    .contact-icon-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 25vw;
        height: 10vh;
        border: 3px solid #b10000;
        border-radius: 4px;
        background: #090909;
        transition: background 0.22s, border 0.2s, box-shadow 0.18s;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 0 0 #ff0000;
    }

    .contact-icon-link:hover, .contact-icon-link:focus {
        border-color: #ff0000;
        box-shadow: 0 0 12px #ff000099, 0 0 36px #ff000088;
    } 

    .contact-icon-link img {
        width: 13vw;
        height: auto;
        transition: fill 0.18s;
    }

    .contact-icon-link:hover svg {
        fill: #fff;
    }

    .contact-email-box {
        margin-top: 26px;
        border: 3px solid #b10000;
        padding: 18px 32px 5vw 22px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Orbitron', monospace;
        font-size: 1rem;
        background: #090909;
        gap: 5vw;
    }

    .contact-email-box img {
        height: 5vh;
        object-fit: contain;

    }

    .contact-email-box svg {
        width: 48px;
        height: 48px;
        fill: #ff0000;
    }
}


@media (max-width: 350px) and (max-height:650px){
    .clock {
        position: absolute;
        top: 15vh;
        right: 20vh;
        color: #fff;
        font-size: 1rem;
        font-weight: 200;
        z-index: 32;
        font-family: 'Orbitron', monospace;
        letter-spacing: 1px;
    }
    .start-btn{
        font-size: 1rem;
        inset: 0;
        margin: auto;
    }

    body{
        overflow-y: auto;
    }
    .close-btn{
        height: auto;
        width: 13vw;
        right: 40vw;
        top: -5vh;
    }
    .content-box{
        width: auto;
        height: 55vh !important;
    }
}