:root {
    --pink: #FF44EE;
    --dark-purple: #4129FF;
    --green: #00F067;
    --dark-blue: #000050;
    --bg-blue: #000050;
    --white: #ffffff;
}

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

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background-color: var(--bg-blue);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(65, 41, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 68, 238, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .btn, .juice-text {
    font-family: 'Cherry Bomb One', cursive;
    letter-spacing: 3px;
}

.juice-text {
    color: var(--white);
    -webkit-text-stroke: 10px var(--dark-blue);
    paint-order: stroke fill;
    text-shadow: 0 4px 0 var(--dark-blue);
    font-size: 3.5rem; /* Standard Section Title Size */
    line-height: 1.1;
	 letter-spacing: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Sticky Header --- */
header.container {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-radius: 32px;
    border-bottom: 1px solid transparent;
    width: 100%;
    max-width: 1400px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 30px 40px;
}
header.container nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

header.container.scrolled {
    position: fixed;
    background: rgba(0, 0, 80, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 10px 40px;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    display: block;
    height: 80px;
    width: auto;
    transition: all 0.4s ease;
}

header.container.scrolled .logo img {
    height: 50px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--white);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-btn {
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
    font-weight: 800 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
    font-size: 1.1rem !important;
    transform: none !important;
    color: var(--white) !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
    position: relative;
}

.nav-btn.active {
    color: var(--pink) !important;
    text-shadow: 0 0 15px rgba(255, 68, 238, 0.4) !important;
    opacity: 1 !important;
}

.nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--pink);
}



.nav-btn .btn-text {
    transform: none !important;
}

.nav-btn:hover {
    opacity: 1;
    transform: translateY(-2px) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}



/* --- Buttons System --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    border-radius: 32px;
    border: 3px solid var(--dark-blue);
    box-shadow: -4px 6px 0px var(--dark-blue);
    text-align: center;
    transform: skewX(-5deg);
    text-shadow: 
        -2px -2px 0 var(--dark-blue),  
         2px -2px 0 var(--dark-blue),
        -2px  2px 0 var(--dark-blue),
         2px  2px 0 var(--dark-blue),
         0px  2px 0 var(--dark-blue),
         -2px 4px 0px var(--dark-blue);
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    user-select: none;
}

.btn-text {
    display: inline-block;
    font-size: 2rem;
}

.btn-minimal .btn-text{
	font-size: 1.2rem;
}

.btn:active {
    transform: skewX(-5deg) translate(-2px, 3px);
    box-shadow: -2px 3px 0px var(--dark-blue);
}

.btn:hover {
    filter: brightness(1.1);
    transform: skewX(-5deg) scale(1.05) rotate(-1deg);
}

.btn-pink { background-color: var(--pink); }
.btn-purple { background-color: var(--dark-purple); }
.btn-green { background-color: var(--green); }

/* Floating Button */
.floating-get-now {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
}

.floating-get-now.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-get-now .btn {
    white-space: nowrap !important; /* Force single line */
    display: inline-flex !important;
    min-width: max-content;
    box-shadow: 0 10px 30px rgba(255, 68, 238, 0.4), -4px 6px 0px var(--dark-blue);
}

.floating-get-now .btn .btn-text {
    white-space: nowrap !important;
}

.btn-minimal, .btn.btn-minimal {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    padding: 8px 16px !important;
}

.btn-minimal .btn-text, .btn.btn-minimal .btn-text {
    transform: none !important;
    text-shadow: none !important;
}

.btn-minimal:hover, .btn.btn-minimal:hover {
    opacity: 0.8;
    transform: translateY(-2px) !important;
    background: transparent !important;
    box-shadow: none !important;
}
.hero {
    position: relative;
    background-color: #000030;
    background-image: 
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.15), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(65, 41, 255, 0.2), transparent 40%),
        url('images/Img-Hero.png');
    background-size: cover;
    background-position: center;
    border-bottom: none;
    box-shadow: none;
    margin-bottom: 80px;
    overflow: hidden;
}



.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    flex: 1;
    max-width: 750px;
    position: relative;
    z-index: 10;
    animation: floating 8s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
}

.subtitle {
	
    font-size: 1.6rem;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 500;
    max-width: 680px;
}

.cta-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn {
    font-size: 1.8rem;
    padding: 20px 45px;
    animation: pulse 2s infinite;
}

.available-platforms {
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 0, 80, 0.8), transparent);
    padding: 25px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 20;
}

.platform-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.platform-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.btn-minimal {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    color: var(--white) !important;
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 15px 30px !important;
    border-radius: 32px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-minimal:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.btn-minimal .btn-text {
    transform: none !important;
}

.floating-get-now {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-get-now.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* --- Screenshots Section --- */
.screenshots {
    padding: 0 0 120px 0;
    text-align: center;
}

.screenshots h2 {
    font-size: 3.5rem;
    margin-bottom: 60px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0;
}

.carousel-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
    border-radius: 32px;
    border: 4px solid var(--dark-blue);
    box-shadow: -8px 12px 0px var(--dark-blue);
    overflow: hidden;
    background: #000;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide.active {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), -8px 12px 0px var(--dark-blue);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 100;
}

.carousel-nav .nav-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background: var(--pink) !important;
    border: 3px solid var(--dark-blue) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -4px 6px 0 var(--dark-blue) !important;
    transition: all 0.3s ease !important;
}

.carousel-nav .nav-btn:hover {
    transform: scale(1.1) translateY(-3px) !important;
    box-shadow: -6px 8px 0 var(--dark-blue) !important;
}

.carousel-nav .nav-btn svg {
    width: 32px;
    height: 32px;
}

.carousel-nav .nav-btn:hover {
    transform: scale(1.1) translateY(-3px) !important;
    box-shadow: -6px 8px 0 var(--dark-blue) !important;
}

.carousel-nav .nav-btn svg {
    width: 32px;
    height: 32px;
}

.update-card:hover::before {
    opacity: 1;
}

.update-date {
    font-size: 1rem;
    color: var(--pink);
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.update-card p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* --- About Game Section --- */
.about-game {
    padding: 160px 0 0 0;
    background: radial-gradient(circle at center, rgba(65, 41, 255, 0.15) 0%, transparent 70%);
}

.game-pitch {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.game-pitch h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.game-pitch p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.card-showoff {
    display: flex;
    justify-content: center;
    gap: -60px;
    perspective: 2000px;
    padding: 0px 20px;
}

.game-card {
    width: 260px;
    height: 433px;
    border-radius: 32px;
    border: 4px solid var(--dark-blue);
    box-shadow: -6px 10px 0px var(--dark-blue);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hand Deck Arc */
.game-card:nth-child(1) {
    transform: rotate(-12deg) translateY(40px) translateX(30px);
    z-index: 1;
}

.game-card:nth-child(2) {
    transform: translateY(0);
    z-index: 3;
}

.game-card:nth-child(3) {
    transform: rotate(12deg) translateY(40px) translateX(-30px);
    z-index: 1;
}

/* Hover lift within the arc */
.game-card:hover {
    z-index: 10 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), -6px 10px 0px var(--dark-blue);
}

.game-card:nth-child(1):hover { transform: rotate(-5deg) translateY(-10px) translateX(20px) scale(1.05); }
.game-card:nth-child(2):hover { transform: translateY(-40px) scale(1.05); }
.game-card:nth-child(3):hover { transform: rotate(5deg) translateY(-10px) translateX(-20px) scale(1.05); }

.cards-badge {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* --- About Section (Dev) --- */
.about {
    padding: 160px 0;
    display: flex;
    justify-content: center;
}

.about-card {
    background: none !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 40px 0;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 60px;
    box-shadow: none !important;
    position: relative;
}

.avatar-container {
    flex-shrink: 0;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.avatar-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar-image:hover {
    transform: scale(1.05) rotate(5deg);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.social-icons {
    width: 100%; /* Full width to force it to its own row */
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none !important;
    border: none !important;
    color: var(--white);
    opacity: 0.6;
    transition: all 0.3s ease !important;
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    opacity: 1;
    color: var(--pink) !important;
}

/* --- Footer --- */
footer.container {
    text-align: center;
    padding: 80px 0;
    opacity: 0.6;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
	margin-bottom: 80px;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0% { transform: skewX(-5deg) scale(1); }
    50% { transform: skewX(-5deg) scale(1.04); }
    100% { transform: skewX(-5deg) scale(1); }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .carousel-nav { left: 10px; right: 10px; }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
        width: 100%;
    }

    header.container {
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        left: 0;
        transform: none;
    }
    
    .hamburger {
        display: flex;
    }
	
	.game-pitch {
    margin: 0 auto 40px;
}

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 80, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        padding: 40px;
    }

    #nav-menu.active {
        right: 0;
    }

    .nav-btn {
        font-size: 1.8rem !important;
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 50px;
    }
    
    header.container.scrolled {
        transform: none;
        left: 0;
        width: 100%;
        padding: 10px 20px;
    }

    header.container.scrolled .logo img {
        height: 40px;
    }

    .hero {
        background-image: url('images/Img-Hero_Mobile.png');
        background-size: cover;
        background-position: center;
        padding-top: 100px; /* Space for header */
        text-align: center;
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }



    .hero .container {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 0 20px 0;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    }

    .top-meta {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .juice-text {
        font-size: 2.5rem !important;
        line-height: 1.1;
        -webkit-text-stroke: 6px var(--dark-blue) !important;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .bottom-meta {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding-bottom: 0;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        max-width: 100%;
        margin-top: 0;
    }

    .btn {
        width: 100%;
        justify-content: center;
        font-size: 1.4rem !important;
        padding: 15px 25px !important;
    }

    .available-platforms {
        position: static;
        padding: 15px 0;
        background: #000050;
        width: 100%;
        display: block;
        z-index: 100;
    }

    .platform-inner {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px;
        color: #ffffff !important;
        opacity: 1 !important;
        padding: 0;
    }

    .available-platforms .platform-icon {
    width: 22px;
    height: 22px;
    color: #ffffff !important;
}



    .game-pitch h2 {
        /* Inherits from .juice-text */
    }

    .game-pitch p {
        font-size: 1.2rem;
    }

    .card-showoff {
        gap: -80px; /* More aggressive overlap for narrow screens */
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0px 0 100px;
        overflow: visible;
        width: 100%;
        margin-left: 0;
    }

    .game-card {
        flex: 0 0 150px;
        height: 250px;
		border-radius: 24px;
    }

    /* Maintain Arc on Mobile */
    .game-card:nth-child(1) {
        transform: rotate(-12deg) translateY(30px) translateX(40px);
    }
    
    .game-card:nth-child(2) {
        transform: translateY(0);
    }

    .game-card:nth-child(3) {
        transform: rotate(12deg) translateY(30px) translateX(-40px);
    }

    .screenshots {
        padding: 60px 0;
    }

    .screenshots h2 {
        /* Inherits from .juice-text */
        margin-bottom: 40px;
    }

    .carousel-wrapper {
        width: 100%;
        margin: 0 0 40px;
    }

    .carousel-slide {
        aspect-ratio: 4/3;
        border-radius: 24px;
    }

    .screenshots .container {
        padding: 0; /* Make it full width on mobile */
    }

    .carousel-nav {
        display: none;
    }

    .about-content h2 {
        /* Inherits from .juice-text */
    }

    /* Mobile Floating Button - Nice Full Width */
    .floating-get-now {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        transform: translateY(100%);
        background: linear-gradient(to top, rgba(0, 0, 80, 0.95), transparent);
        pointer-events: none;
        backdrop-filter: blur(5px);
    }

    .floating-get-now.visible {
        transform: translateY(0);
    }

    .floating-get-now .btn {
        width: 100%;
        pointer-events: auto;
        font-size: 1.6rem !important;
        padding: 18px !important;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .avatar-placeholder {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-btn {
        font-size: 0.9rem !important;
    }
}
