* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #f1eadd;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin: 0;
    overflow: hidden;
}

.wrapper {

}

.phonebody{
    position: relative;
    top: -665px;
    overflow:hidden;
    z-index: -1000;
    /*scale: 2.25;*/
    width: 700px;
    right: 2px;
}

/*  phone frame  */
.phonescreen {
    width: 425px;
    height: 525px;
    background: #eeedeb;
    border-radius: 16px 16px 16px 16px;
    padding: 18px 16px 24px;
    border: 6px solid #c46837;
    position: relative;
    top: 108px;
    margin-left: auto;
    margin-right: auto;
}

/* top bar  */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 14px 4px;
    border-bottom: 2px solid rgba(255, 140, 0);
    margin-bottom: 18px;
}

.top-bar .brand {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(255, 140, 0);
    text-shadow: 0 0 12px rgba(255, 140, 0, 0.15);
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/*  grid of links  */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
    margin: 20px 0 0;
}

/* link tiles */
.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 16px;
    padding: 16px 4px 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);

    position: relative;
}

.tile:active {
    transform: scale(0.94);
    background: rgba(255, 140, 0, 0.06);
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.04);
}

/* desktop hover box */
@media (hover: hover) {
    .tile:hover {
        background: rgba(255, 140, 0, 0.2);
        border-color: rgba(255, 140, 0, 0.3);
        box-shadow: 0 0 40px rgba(255, 140, 0, 0.05);
    }

    .tile:hover .icon-wrap {
        transform: scale(120%);
    }
}

/* icon bubble */
.icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: transparent;
    margin-bottom: 6px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6) inset , 0 0 20px rgba(255, 140, 0, 0.6) ;
}

.tile:active .icon-wrap {
    border-color: rgb(255, 140, 0);
    box-shadow: 0 0 20px rgba(255, 140, 0) inset , 0 0 20px rgba(255, 140, 0) ;
    background:transparent;
}


.label {
    font-size: 10px;
    font-weight: 400;
    color: black;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    padding: 0 2px;
    word-break: keep-all;
}


.tile:active .label {
    color: rgba(255, 140, 0, 0.7);
}

@media (hover: hover) {
    .tile:hover .label {
        color: rgba(255, 140, 0);
    }
}

/* prerelease emphasis */

.tile-prerelease .label {
    color: rgb(255, 140, 0);
}

.tile-prerelease .icon-wrap {
    animation: pulse-emphasis 4s ease-in-out infinite;
}


/* footer */
.footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 2px solid rgb(255, 140, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.10);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer .now {
    color: rgba(255, 140, 0, 0.8);
    font-weight: 300;
}

.footer .now span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.8);
    margin-right: 6px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse{
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        background: rgba(255, 140, 0, 0.8);
    }
}

@keyframes pulse-emphasis{
    0%,
    100% {

        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        background: rgba(255, 140, 0, 0.8);
    }
}




::selection {
    background: rgba(255, 140, 0, 0.15);
    color: rgba(255, 255, 255, 0.8);
}