@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --aurecas-blue: #1e7bff;
    --aurecas-blue-hover: #1664d6;
    --aurecas-light: #53c2ff;
    --aurecas-dark: #04122d;
    --aurecas-darker: #020a1a;
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --bg-card: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--aurecas-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--aurecas-blue);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.z-50 {
    z-index: 50;
}

.z-10 {
    z-index: 10;
}

.z-0 {
    z-index: 0;
}

/* Desktop & Mobile visibility */
.desktop-only {
    display: none;
}

.mobile-only {
    display: flex;
}

@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }

    .mobile-only {
        display: none;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(4, 18, 45, 0);
    /* Transparent initially */
    transition: all 0.5s ease;
    padding: 1.25rem 0;
}

.header.scrolled {
    background-color: rgba(4, 18, 45, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 50;
}

.logo-wrapper {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background-color: var(--aurecas-blue);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-link:hover .logo-glow {
    opacity: 0.5;
}

.logo-img {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        width: 3rem;
        height: 3rem;
    }
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    color: #fff;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

.logo-link:hover .logo-text {
    color: var(--aurecas-light);
}

/* Desktop Nav */
.nav-right {
    display: flex !important;
    align-items: center;
    gap: 1rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--aurecas-blue);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-line {
    width: 100%;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 0.125rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-left: 1.25rem;
}

.lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 0.5rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background-color: var(--aurecas-blue);
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    padding: 0.5rem;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.2s ease;
    z-index: 50;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(4, 18, 45, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 40;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.mobile-lang {
    margin-left: 0;
    margin-top: 1rem;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes gradient-x {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--aurecas-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse infinite ease-in-out;
}

.glow-1 {
    top: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background-color: rgba(30, 123, 255, 0.2);
    animation-duration: 8s;
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background-color: rgba(147, 51, 234, 0.2);
    animation-duration: 10s;
    animation-delay: 1s;
}

.glow-3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 40vw;
    background-color: rgba(6, 182, 212, 0.1);
    filter: blur(100px);
    animation: none;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.2;
    mix-blend-mode: soft-light;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 64rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 8rem;
    }
}

/* Welcome Badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aurecas-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 15px rgba(83, 194, 255, 0.3);
}

@media (min-width: 768px) {
    .welcome-badge {
        font-size: 0.875rem;
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Hero Typography */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.text-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--aurecas-light), #fff, var(--aurecas-blue));
    background-size: 200% auto;
    animation: gradient-x 3s ease infinite;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 42rem;
    line-height: 1.625;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--aurecas-blue);
    color: #fff;
    box-shadow: 0 0 20px rgba(30, 123, 255, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(30, 123, 255, 0.8);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
    z-index: 20;
}

.scroll-down:hover {
    color: #fff;
}

/* About Section */
.about-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background-color: var(--aurecas-dark);
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.bg-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4, 18, 45, 0.8), rgba(4, 18, 45, 0.9), var(--aurecas-dark));
}

.about-header {
    max-width: 56rem;
    margin: 0 auto 5rem;
}

.badge {
    display: inline-block;
    color: var(--aurecas-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    background-color: rgba(30, 123, 255, 0.1);
    border-radius: 9999px;
    border: 1px solid rgba(30, 123, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.text-green-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #4ade80, #6ee7b7);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
    max-width: 42rem;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto 5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    position: relative;
}

.stat-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 123, 255, 0.5), rgba(147, 51, 234, 0.5));
    border-radius: 2rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

.stat-content {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
    overflow: hidden;
    text-align: center;
}

.stat-card:hover .stat-content {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, rgba(30, 123, 255, 0.2), rgba(147, 51, 234, 0.2));
    border-bottom-left-radius: 100px;
    margin-right: -2rem;
    margin-top: -2rem;
    transition: transform 0.5s ease;
}

.stat-card:hover .stat-corner-accent {
    transform: scale(1.1);
}

.stat-icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(30, 123, 255, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

.stat-emoji {
    font-size: 2.25rem;
}

.text-gradient-light {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--aurecas-light), #fff);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* Achievement */
.achievement-container {
    max-width: 56rem;
    margin: 0 auto;
}

.achievement-card {
    position: relative;
    border-radius: 2.5rem;
}

.achievement-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    opacity: 0.5;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.achievement-card:hover .achievement-glow {
    opacity: 1;
}

.achievement-content {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.flex-col {
    flex-direction: column;
}

@media (min-width: 768px) {
    .achievement-content.md-flex-row {
        flex-direction: row;
        padding: 3rem;
    }

    .achievement-text {
        text-align: left;
    }
}

.achievement-logo-box {
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    padding: 0.25rem;
    box-shadow: 0 0 39.1881px rgba(59, 130, 246, 0.79);
}

@media (min-width: 768px) {
    .achievement-logo-box {
        width: 10rem;
        height: 10rem;
    }
}

.achievement-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background-color: var(--aurecas-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.achievement-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.achievement-text {
    flex: 1;
    text-align: center;
}

.achievement-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #facc15;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .achievement-tag {
        justify-content: flex-start;
    }
}

.achievement-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .achievement-title {
        font-size: 1.875rem;
    }
}

.achievement-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
}

/* Games Section */
.games-section {
    position: relative;
    padding: 8rem 0;
    background-color: var(--aurecas-darker);
    overflow: hidden;
}

.games-header {
    margin-bottom: 6rem;
}

.text-blue-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--aurecas-light), var(--aurecas-blue));
    display: inline-block;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.game-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .game-showcase {
        flex-direction: row;
        gap: 6rem;
    }

    .game-showcase.reverse {
        flex-direction: row-reverse;
    }

    .game-content,
    .game-visual {
        flex: 1;
    }
}

.game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .game-content {
        align-items: flex-start;
        text-align: left;
    }
}

.game-logo-box {
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Base game colors */
.bg-stick {
    background: linear-gradient(135deg, #1f2937, #111827);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-evil {
    background: linear-gradient(135deg, #7e22ce, #4c1d95);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.bg-space {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.game-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .game-title {
        font-size: 3rem;
    }
}

.game-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.625;
    margin-bottom: 2.5rem;
}

.game-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    justify-content: center;
}

@media (min-width: 1024px) {
    .game-stats {
        justify-content: flex-start;
    }
}

.game-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.875rem;
    font-weight: 800;
    color: #fff;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .store-buttons {
        justify-content: flex-start;
    }
}

.store-btn {
    display: block;
    height: 3rem;
    transition: transform 0.2s ease;
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 100%;
    width: auto;
}

/* Game Visual Content */
.game-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.visual-bg {
    position: absolute;
    width: 120%;
    padding-bottom: 120%;
    /* creates a circle */
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.bg-stick-glow {
    background-color: #f59e0b;
}

.bg-evil-glow {
    background-color: #a855f7;
}

.bg-space-glow {
    background-color: #38bdf8;
}

.game-mockup {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 400px;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-reverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

.floating-slow {
    animation: float 6s ease-in-out infinite;
}

.floating-slow-reverse {
    animation: float-reverse 7s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4da4ff 0%, #176BFF 100%);
}

.contact-card {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
}

.contact-content {
    background-color: #f8fafc;
    border-radius: 2rem;
    padding: 5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-content {
        padding: 6rem 4rem;
    }
}

.contact-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #eef2ff;
    color: var(--aurecas-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3.5rem;
    }
}

.contact-desc {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 36rem;
}

.contact-email {
    font-size: 2rem;
    font-weight: 800;
    color: var(--aurecas-blue);
    text-decoration: none;
    margin-bottom: 3.5rem;
    transition: color 0.2s ease;
    word-break: break-all;
}

@media (min-width: 768px) {
    .contact-email {
        font-size: 2.5rem;
    }
}

.contact-email:hover {
    color: var(--aurecas-blue-hover);
}

.social-links-minimal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #fff;
    border-radius: 1rem;
    color: #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.social-btn-minimal:hover {
    color: #0f172a;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: var(--aurecas-darker);
    padding: 6rem 0 3rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--aurecas-blue);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-link-small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link-small:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}