@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Alfa+Slab+One&display=swap');
:root {
    --primary-color: #CE0040;
    --secondary-color: #fff;
    --dark-bg: #000;
    --light-bg: #000;
    --grey-color: #a7a7a7;
    --accent-color: #fff;
    --text-light: #e0e0e0;
    --text-muted: #666;
    --form-bg: rgba(255, 255, 255, 0.95);
    --input-border: #ddd;
    --input-focus: #fff;
    --accent-yellow: #F9ED43;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Alfa Slab One', sans-serif;
}

.navbar {
    background: transparent;
    padding: 10px 0;
    z-index: 10;
    position: absolute;
    display: block;
    top: 0;
    width: 100%;
}

.navbar-scroll{
    background: var(--primary-color) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color) !important;
    text-decoration: none;
    position: relative;
}

.navbar-brand img{
    width: 100px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0 25px;
    padding: 10px 0 !important;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-active{
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
}

.navbar-toggler {
    border: none;
    color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ml-auto{
    margin-left: auto !important;
}

.btn-buy {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
    font-size: 16px;
}

.btn-buy:hover {
    transform: translateY(-2px);
    background:#fff;
    color: #000;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .btn-buy {
        margin-top: 10px;
        text-align: center;
    }
}

.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 30px;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero .img-left{
    max-width: 350px;
    margin: 0px auto;
    display: block;
}

.hero .img-right{
    max-width: 400px;
}

.hero .img-center{
    max-width: 350px;
}

.hero h1{
    color: #fff;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.hero .btn-social{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .btn-social img{
    width: 70px;
    cursor: pointer;
}

section{
    height: 100%;
}

#about{
    padding-top: 80px;
    padding-bottom: 30px;
    background: #CE0040;
}

#splash-footer{
    background: #CE0040;
    padding-top: 10px;
    padding-bottom: 20px;
}

#about h1{
    font-size: 32px;
    font-weight: 400;
    color: #F9ED43;
    margin-bottom: 20px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

#about p{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

/* Squid Game Symbol Animation */
.squid-symbol {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.squid-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 3s linear infinite;
}

.squid-symbol::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

/* Loading Text */
.loading-text {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 
        -2px -2px 0 var(--dark-bg),
        2px -2px 0 var(--dark-bg),
        -2px 2px 0 var(--dark-bg),
        2px 2px 0 var(--dark-bg);
    animation: glow 2s ease-in-out infinite alternate;
}

.loading-subtext {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 
        -1px -1px 0 var(--dark-bg),
        1px -1px 0 var(--dark-bg),
        -1px 1px 0 var(--dark-bg),
        1px 1px 0 var(--dark-bg);
}

/* Progress Bar */
.progress-container {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow), var(--secondary-color));
    border-radius: 4px;
    width: 0%;
    animation: loading 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(249, 237, 67, 0.5);
}

/* Percentage Text */
.percentage {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    text-shadow: 
        -1px -1px 0 var(--dark-bg),
        1px -1px 0 var(--dark-bg),
        -1px 1px 0 var(--dark-bg),
        1px 1px 0 var(--dark-bg);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 15%;
    width: 25px;
    height: 25px;
    background: var(--accent-yellow);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 1s;
}

.shape-3 {
    bottom: 15%;
    left: 20%;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
    animation-delay: 2s;
}

.shape-4 {
    bottom: 25%;
    right: 25%;
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glow {
    from { text-shadow: 
        -2px -2px 0 var(--dark-bg),
        2px -2px 0 var(--dark-bg),
        -2px 2px 0 var(--dark-bg),
        2px 2px 0 var(--dark-bg),
        0 0 5px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 
        -2px -2px 0 var(--dark-bg),
        2px -2px 0 var(--dark-bg),
        -2px 2px 0 var(--dark-bg),
        2px 2px 0 var(--dark-bg),
        0 0 20px rgba(255, 255, 255, 0.8); }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .squid-symbol {
        width: 120px;
        height: 120px;
    }

    .squid-symbol::before {
        width: 60px;
        height: 60px;
    }

    .squid-symbol::after {
        width: 30px;
        height: 30px;
    }

    .loading-text {
        font-size: 2rem;
    }

    .loading-subtext {
        font-size: 1rem;
        padding: 0 20px;
    }

    .progress-container {
        width: 250px;
    }

    .percentage {
        font-size: 1.2rem;
    }
}

@media(max-width:1024px){
    .hero{
        height: 100%;
        padding: 80px 0px 20px;
    }
}

@media(max-width:992px){
    .navbar{
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar-collapse{
        padding-bottom: 10px;
        text-align: center;
    }

    .hero{
        height: 100%;
        padding: 100px 0px 50px;
        min-height: 100%;
    }
    
    .navbar>.container{
        justify-content: end;
    }
}

@media(max-width:767px){
    .hero{
        min-height: 100vh;
        min-height: 100%;
    }

    .hero h1 {
        color: #fff;
        font-weight: 800;
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .hero .img-right{
        width: 100%;
    }
}