:root {
    --bg-dark: #1E1E1E;
    --text-main: #F0EFEF;
    --accent-cyan: #6DD4BE;
    --accent-blue: #383ABD;
    --deep-blue: #281697;
}

@font-face {
    font-family: 'SamiFont'; 
    src: url('typography/Garet-Book.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    font-family: 'SamiFont'; 
    overflow-x: hidden;
}

.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    box-sizing: border-box;
    z-index: 10;
    background-color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.show-logged-in {
    display: none !important;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
    margin-right: 40px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu {
    display: flex;
}

.icon_cart {
    display: flex;
    align-items: center;
    
}

.icon_cart button {
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    border: none;
}

.icon_cart button:hover {
    box-shadow: 0 0 20px var(--accent-cyan);
}

#icon_cart {
    margin: 0;
    width: 20px;
    height: 20px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--deep-blue); 
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.cart-badge.bump {
    transform: scale(1.2);
}

.currency-badge {
    cursor: pointer;
    transition: opacity 0.2s;
}

.currency-badge:hover {
    opacity: 0.8;
}

/* ==========================================================================
   ANIMATION
   ========================================================================== */

.brand-info .acronym,
.brand-info .slogan,
.brand-info .text,
.mockup-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.brand-info .acronym.reveal-visible,
.brand-info .slogan.reveal-visible,
.brand-info .text.reveal-visible,
.mockup-image.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


.brand-info .acronym.reveal-visible {
    transition-delay: 0.1s;
}

.brand-info .slogan.reveal-visible {
    transition-delay: 0.25s;
}

.brand-info .text.reveal-visible {
    opacity: 0.85;
    transform: translateY(0);
}

.mockup-image.reveal-visible {
    transition-delay: 0.55s;
    transform: translateY(0) scale(1);
}


#samiCanvas {
    margin-top: 0;
    display: block;
    z-index: -10;
    pointer-events: none;
}

.intro-section {
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    position: relative;
    top: 0;
    z-index: 1;

    box-sizing: border-box;
    overflow: hidden;
}

.content-wrapper {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
    padding-top: 50px;
    padding-bottom: 100px;
}

.content-wrapper-register {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
    padding-top: 50px;

}

.brand-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1600px;
    margin: 200px auto 0;
    padding: 20px;
    z-index: 5;
}


.brand-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.brand-info .acronym, 
.brand-info .slogan {
    text-align: left;
    padding: 0;
}


.brand-info .acronym h1 {
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    color: var(--accent-cyan);
}

.brand-info .slogan {
    font-size: 5.5rem;           
    font-weight: 1000;
    line-height: 0.95;
    letter-spacing: -1px;
    margin: 0 0 35px 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    background: radial-gradient(circle at center, #6dd4be 0%, #86b9f5 60%, #383abd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    display: block;
}


.brand-info .text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-main);
    max-width: 800px;
    margin: 0;
}

.mockup-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.mockup-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

@media (min-width: 992px) {
    .brand-container {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ==========================================================================
   SAMI ALERTS
   ========================================================================== */

.sami-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    background-color: #1E1E1E;
    color: #F0EFEF;
    border: 1px solid #6DD4BE;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: 'SamiFont', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(109, 212, 190, 0.15);
    z-index: 10000;
    
    transform: translate(-50%, -100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.sami-toast.toast-show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.sami-alert-highlight {
    color: #6DD4BE;
    font-weight: 700;
    font-family: 'SamiFont', sans-serif;
}

/* ==========================================================================
   SAMI CONFIRM ALERT
   ========================================================================== */

.sami-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 110000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sami-modal-box {
    background-color: #1E1E1E;
    border: 1px solid #6DD4BE;
    color: #F0EFEF;
    padding: 30px;
    border-radius: 16px;
    font-family: 'SamiFont', sans-serif;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(109, 212, 190, 0.1);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sami-modal-overlay.modal-show {
    opacity: 1;
}

.sami-modal-overlay.modal-show .sami-modal-box {
    transform: scale(1);
}

.sami-modal-text {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
}

.sami-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sami-btn-confirm {
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'SamiFont', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #6DD4BE;
    color: #1E1E1E;
    border: none;
}

.sami-btn-confirm:hover {
    box-shadow: 0 0 15px #6DD4BE;
}

.sami-btn-cancel {
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'SamiFont', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: 1px solid rgba(240, 239, 239, 0.3);
    color: #F0EFEF;
}

.sami-btn-cancel:hover {
    background-color: rgba(240, 239, 239, 0.1);
    border-color: #F0EFEF;
}