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

/* -------- Body -------- */
body {
    font-family: 'Nova Square', sans-serif;
    min-height: 100vh;
    color: #FFFFFF;
    overflow-x: hidden;
    position: relative;
}

/* -------- Background Image + Overlay -------- */
.background {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(
            rgba(0, 20, 40, 0.65),
            rgba(9, 0, 40, 0.65)
        ),
        url("./samo-bg.png") center/cover no-repeat;
    z-index: -1;
}

/* -------- Top Navigation -------- */
header.top-nav{
        background: #ffffff00;
        width: 100%;
        position: fixed;
        height: auto;
        justify-content: initial
}

header.maingrid{
    display:grid!important;
}

.maingrid {
    --halfContent: calc(var(--maxContent, 1740px) / 2);
    display: grid!important;
    margin: auto;
    grid-template-columns: [full-start] var(--paddingSideGrid, 0px) 1fr [content-start] 0px [contentLeft-start] minmax(0px,var(--halfContent)) [contentLeft-end] 0px [contentRight-start] minmax(0px,var(--halfContent)) [contentRight-end] 0px [content-end] 1fr var(--paddingSideGrid, 0px) [full-end];
}

.maingrid>*,.mFull>*:not(.mFull) {
    grid-column: content;
}
.top-nav {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #110c25;
    position: fixed;
    left: 0;
    font-family: kanit;
    z-index: 2;
    /*border: solid 1px #040404;
    box-shadow: 0 2px 3px #00000080;*/
    display: flex;
    justify-content: center
}

.nav-icons a {
    margin-left: 18px;
}

.icon {
    width: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* -------- Hero Section -------- */
.hero {
    max-width: 720px;
    margin: auto;
    padding: 100px 24px 0;
    text-align: center;
}

/* -------- Animations -------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* -------- Logo -------- */
.logo {
    width: 160px;
    margin-bottom: 28px;
    animation: softFloat 4s ease-in-out infinite;
}

/* -------- Heading -------- */
h1 {
    font-size: calc(20px + 3.00625vw);
    font-weight: 700;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

/* -------- Text -------- */
.subheading {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.25s;
}

/* -------- CTA Button -------- */
#ctaBtn {
    background: #00A3FF;
    color: #FFFFFF;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.45s;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

#ctaBtn:hover {
    transform: translateY(-2px) scale(1.04);
    background: #0090E6;
    box-shadow: 0 16px 40px rgba(0, 163, 255, 0.45);
}

.social-ico{
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(to bottom,#8576db,#da21fd);
    border: 3px solid #321c58
}

.wrapperr{
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
    margin: 1rem!important;
    text-align: center;
    pointer-events: none
}

.icon-samo{
    width: 42px;
    height: 40px;
    position: fixed;
    top: 5px;
    border-radius: 5px;
    left: 11px;
    margin: auto;
    transform: rotateY(180deg)
}

.icon-samo .img-samo {
    padding: 4px;
    display: inline-flex
}

header .icon-samo .img-samo:before {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 50%;
        background-image: linear-gradient(to bottom,#06f9a5,#8576db,#da21fd);
        opacity: .2;
        transition: all .3s ease 0s
}

@media screen and (min-width: 1024px) {
    .wrapperr {
        pointer-events:visible;
        position: relative;
        background-color: initial;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }
}

header .wrapperr {
        max-width: var(--maxContent);
        display: grid;
        grid-template-columns: auto 1fr auto;
        margin: auto;
        padding: 0;
}

@media screen and (min-width: 1024px) {
    .icon-samo {
        left:initial;
        top: 0;
        margin: initial;
        position: relative;
        background-color: initial;
        display: inline-flex;
    }
}

header .icon-samo {
    width: 100%!important;
    margin-right: auto;
    display: flex;
    align-items: center;
}

header .icon-samo .img-samo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        border-radius: 50%;
        padding: 5px;
        cursor: pointer;
        transition: all .2s ease 0s;
}

.soc-samo{
    transition: none!important;
        background-color: initial;
        border-radius: initial;
        padding: 0;
        margin-left: auto;
        width: 100%;
        text-align: right;
        color: #fff;
        border: none;
        translate:0px!important;
        opacity: 1;
}

.soclist-samo{
    align-items: center;
        justify-content: flex-end;
        display: flex;
        column-gap: 10px;
        margin-top:0;
        padding-top: 0;
        border-top: none
}

*{
    --maxContent: 1640px;
    --paddingSideGrid: 60px;
    --minPadding: 6px;
}

img,picture,svg,video {
    display: block;
    max-width: 100%
}


button.svelte-wjugf9.svelte-wjugf9 {
    outline: none;
    border: none;
    color: #fff;
    padding: calc(var(--minPadding) * 1.5) calc(var(--minPadding) * 5);
    isolation: isolate;
    transition: all .2s ease 0s;
    border-radius: 3px;
    background-color: transparent;
    --percentage: -18%;
    --percentageSides: -5%;
    cursor: pointer;
    font-size: 18px;
    font-family: "Nova Square";
}

button.secondary.svelte-wjugf9.svelte-wjugf9 {
        padding: calc(var(--minPadding) * 2.5 - 2px) calc(var(--minPadding) * 8)
}
button.secondary.svelte-wjugf9.svelte-wjugf9 {
    background-color: #1277a5;
    border: solid 2px #28b6f5;
    text-transform: uppercase;
    border-radius: 7px
}