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

:root {
    /* Pink & Blue Gradient Color Palette - Starry Sky Theme */
    --pink-primary: #FF69B4;
    --pink-bright: #FF1493;
    --pink-deep: #C71585;
    --pink-soft: #FFB6C1;
    --pink-light: #FFE4E1;
    --blue-primary: #4169E1;
    --blue-bright: #1E90FF;
    --blue-deep: #0000CD;
    --blue-soft: #87CEEB;
    --blue-light: #E0F6FF;
    --dark-bg: #0A0A1A;
    --dark-purple: #1A0A2E;
    --dark-blue: #16213E;
    --white: #FFFFFF;
    --text-light: #F0F8FF;
    --text-gray: #D3D3D3;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="50" cy="30" r="0.5" fill="white" opacity="0.6"/><circle cx="80" cy="60" r="1" fill="white" opacity="0.7"/><circle cx="30" cy="80" r="0.5" fill="white" opacity="0.5"/><circle cx="70" cy="10" r="1" fill="white" opacity="0.9"/></svg>') repeat;
    animation: moveStars 200s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><circle cx="40" cy="40" r="1.5" fill="%23FFB6C1" opacity="0.6"/><circle cx="100" cy="60" r="1" fill="%23FFB6C1" opacity="0.5"/><circle cx="20" cy="120" r="1.5" fill="%23FFB6C1" opacity="0.7"/><circle cx="130" cy="30" r="1" fill="%23FFB6C1" opacity="0.4"/></svg>') repeat;
    animation: moveStars 150s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="60" cy="60" r="1" fill="%2387CEEB" opacity="0.5"/><circle cx="150" cy="90" r="1.5" fill="%2387CEEB" opacity="0.6"/><circle cx="30" cy="150" r="1" fill="%2387CEEB" opacity="0.4"/><circle cx="180" cy="40" r="1.5" fill="%2387CEEB" opacity="0.7"/></svg>') repeat;
    animation: moveStars 100s linear infinite;
}

@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 26, 0.95) 0%, 
        rgba(26, 10, 46, 0.95) 50%,
        rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.3), 
                0 4px 30px rgba(65, 105, 225, 0.3);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--pink-primary), var(--blue-primary)) 1;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Comfortaa', cursive;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-primary), var(--blue-primary));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--pink-soft);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-primary), var(--blue-primary));
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(10, 10, 26, 1) 0%, 
        rgba(26, 10, 46, 0.9) 25%,
        rgba(22, 33, 62, 0.8) 50%,
        rgba(26, 10, 46, 0.9) 75%,
        rgba(10, 10, 26, 1) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 105, 180, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(65, 105, 225, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 55%;
    text-align: left;
    transform: translateX(5%);
}

.hero-image-wrapper {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-icon {
    max-width: calc(100% - 100px);
    height: auto;
    max-height: calc(500px - 100px);
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(255, 105, 180, 0.5));
    animation: iconFloat 6s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-title {
    font-family: 'Comfortaa', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary), var(--pink-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 3;
    transform: rotate(-1deg);
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--pink-soft);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 0 3rem 0;
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4), 
                0 10px 30px rgba(65, 105, 225, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6), 
                0 15px 40px rgba(65, 105, 225, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-soft);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--pink-primary), var(--blue-primary)) 1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(65, 105, 225, 0.1));
    transform: translateY(-3px);
}

/* Floating Yarn Balls */
.floating-yarn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.yarn-ball {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: floatYarn 15s ease-in-out infinite;
}

.yarn-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.yarn-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.yarn-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.yarn-4 {
    top: 40%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes floatYarn {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(-20px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 26, 1) 0%,
        rgba(26, 10, 46, 0.8) 50%,
        rgba(10, 10, 26, 1) 100%);
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(65, 105, 225, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.section-title-left {
    text-align: left;
    max-width: 60%;
    transform: translateX(5%);
}

.section-title-right {
    text-align: right;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    transform: translateX(0);
    white-space: nowrap;
    width: fit-content;
    overflow: visible;
}

.title-decoration {
    display: inline-block;
    margin: 0 1rem;
    font-size: 2.5rem;
    animation: decorationSpin 3s linear infinite;
}

@keyframes decorationSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Asymmetric Features Grid */
.features-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card-large {
    grid-column: span 2;
    padding: 3rem;
    transform: rotate(-0.5deg);
}

.feature-card-medium {
    grid-column: span 1;
    padding: 2rem;
}

.feature-card-small {
    grid-column: span 1;
    padding: 1.5rem;
}

.feature-offset-left {
    transform: translateX(-30px) rotate(1deg);
}

.feature-offset-right {
    transform: translateX(30px) rotate(-1deg);
}

.features-grid-asymmetric .feature-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.features-grid-asymmetric .feature-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    transform: translateX(20px) rotate(1deg);
}

.features-grid-asymmetric .feature-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    transform: translateX(-20px) rotate(-1deg);
}

.features-grid-asymmetric .feature-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
    transform: translateX(15px) rotate(0.5deg);
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(26, 10, 46, 0.6) 0%,
        rgba(22, 33, 62, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%,
        rgba(65, 105, 225, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3), 
                0 20px 40px rgba(65, 105, 225, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.feature-card h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    color: var(--pink-soft);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Gameplay Section */
.gameplay {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 26, 1) 0%,
        rgba(22, 33, 62, 0.8) 50%,
        rgba(10, 10, 26, 1) 100%);
    position: relative;
    z-index: 1;
}

.gameplay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(65, 105, 225, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gameplay-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.gameplay-image-wrapper {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.gameplay-banner {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3), 
                0 20px 60px rgba(65, 105, 225, 0.3);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.gameplay-banner:hover {
    transform: rotate(0deg) scale(1.02);
}

.gameplay-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 50%;
    min-width: 0;
}

.gameplay-content-left {
    text-align: right;
    transform: translateX(-5%);
}

.gameplay-content-left .section-title-right {
    overflow: visible;
    word-break: keep-all;
}

.gameplay-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 0 0 auto;
    line-height: 1.8;
    transform: rotate(0.5deg);
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 26, 1) 0%,
        rgba(26, 10, 46, 0.8) 50%,
        rgba(10, 10, 26, 1) 100%);
    position: relative;
    z-index: 1;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2), 
                0 15px 35px rgba(65, 105, 225, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%,
        rgba(65, 105, 225, 0.1) 100%);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.1);
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.4), 
                0 25px 50px rgba(65, 105, 225, 0.4);
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    gap: 1rem;
}

.screenshot-placeholder span {
    font-size: 1rem;
    opacity: 0.7;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 26, 1) 0%,
        rgba(26, 10, 46, 0.9) 30%,
        rgba(22, 33, 62, 0.8) 50%,
        rgba(26, 10, 46, 0.9) 70%,
        rgba(10, 10, 26, 1) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 105, 180, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(65, 105, 225, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-content-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.download-text-wrapper {
    transform: translateX(5%) rotate(-0.5deg);
}

.download-content h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-content-asymmetric h2 {
    text-align: left;
}

.download-content-asymmetric .download-buttons {
    text-align: center;
    transform: none;
}

.download-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 100%;
}

.download-content-asymmetric .download-description {
    margin-bottom: 0;
}

.download-buttons {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-info p {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-info i {
    color: var(--pink-primary);
}

.download-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
    z-index: 10000;
    transition: bottom 0.3s ease;
    font-weight: 600;
}

.download-toast.show {
    bottom: 30px;
}

/* Download Modal */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-modal.show {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(26, 10, 46, 0.95) 0%,
        rgba(22, 33, 62, 0.95) 100%);
    padding: 3rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.4), 
                0 20px 60px rgba(65, 105, 225, 0.4);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--pink-primary), var(--blue-primary)) 1;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 1;
}

.download-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: rgba(255, 105, 180, 0.2);
    color: var(--pink-primary);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.modal-title {
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-message {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-btn {
    width: 100%;
    max-width: 200px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, 
        rgba(10, 10, 26, 1) 0%,
        rgba(26, 10, 46, 0.9) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Comfortaa', cursive;
    gap: 0.5rem;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.footer-link {
    color: var(--pink-soft);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--pink-primary);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 10, 26, 0.98), rgba(26, 10, 46, 0.98));
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-asymmetric {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .features-grid-asymmetric .feature-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        transform: none !important;
    }

    .feature-card-large,
    .feature-card-medium,
    .feature-card-small {
        grid-column: 1;
        padding: 2rem;
    }

    .download-content-asymmetric {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-text-wrapper {
        transform: none;
    }

    .download-content-asymmetric .download-buttons {
        text-align: center;
        transform: none;
    }

    .section-title-left,
    .section-title-right {
        text-align: center;
        max-width: 100%;
        transform: none;
        white-space: normal;
    }

    .gameplay-content-left {
        text-align: center;
        max-width: 100%;
        transform: none;
    }

    .gameplay-description {
        margin: 0 auto;
        transform: none;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text-wrapper {
        max-width: 100%;
        text-align: center;
        transform: none;
    }

    .hero-image-wrapper {
        max-width: 100%;
        order: -1;
    }

    .hero-icon {
        max-width: calc(100% - 100px);
        max-height: calc(300px - 100px);
    }

    .hero-title {
        transform: none;
    }

    .hero-description {
        margin: 0 auto 3rem;
    }

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

    .modal-content {
        padding: 2rem;
        max-width: 90%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-message {
        font-size: 1rem;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .gameplay-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .gameplay-image-wrapper {
        max-width: 100%;
        order: -1;
    }

    .gameplay-content {
        max-width: 100%;
    }

    .gameplay-content-left {
        text-align: center;
        transform: none;
    }

    .gameplay-banner {
        transform: none;
    }

    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

