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

:root {
    --primary-pink: #ff9ec7;
    --light-pink: #ffb3d1;
    --darker-pink: #ff7fb3;
    --sky-blue: #87ceeb;
    --light-blue: #98d8e8;
    --dark-blue: #5dade2;
    --white: #ffffff;
    --black: #2c2c2c;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    /* GIF Background */
    background-image: url('background.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Dark overlay for readability */
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: overlay;
}



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

/* Cool Header Styles */
.header {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 25%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 75%,
        rgba(0, 0, 0, 0.8) 100%);
    padding: 0.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 15px 15px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    margin-top: 10px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Background */
.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(135, 206, 235, 0.1));
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 30px;
    height: 30px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 50%;
    animation-delay: 1s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.particle:nth-child(6) {
    left: 70%;
    animation-delay: 5s;
    animation-duration: 6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.ippee-logo {
    width: 125px;
    height: 125px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.hero-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.1) rotate(5deg);
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.ippy-mascot-small:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 
        0 8px 25px rgba(135, 206, 235, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mascot-eyes {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.eye {
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
    animation: blink 3s ease-in-out infinite;
}

.eye.left-eye {
    animation-delay: 0s;
}

.eye.right-eye {
    animation-delay: 0.1s;
}

@keyframes blink {
    0%, 90%, 100% { 
        opacity: 1; 
        transform: scaleY(1); 
    }
    95% { 
        opacity: 0.3; 
        transform: scaleY(0.1); 
    }
}

.mascot-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.3) 0%, transparent 70%);
    border-radius: 50% 30% 50% 30%;
    animation: glow 2s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-title {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 0px var(--black);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    display: flex;
    gap: 2px;
}

.letter {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: letterFloat 3s ease-in-out infinite;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }

.letter:hover {
    transform: translateY(-5px) scale(1.2);
    color: var(--sky-blue);
    text-shadow: 3px 3px 0px var(--black), 0 0 20px rgba(135, 206, 235, 0.5);
}

@keyframes letterFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.brand-subtitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2px;
}

.subtitle-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.subtitle-underline {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-blue), var(--light-blue));
    margin-top: 2px;
    transition: width 0.3s ease;
}

.brand-text:hover .subtitle-underline {
    width: 100%;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-shadow: 2px 2px 0px var(--black);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    overflow: hidden;
}

.link-text {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.link-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(135, 206, 235, 0.1));
    border-radius: 25px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.link-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    filter: blur(4px);
}

.nav-link:hover .link-bg {
    transform: scale(1);
}

.nav-link:hover .link-glow {
    opacity: 0.3;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-3px);
    text-shadow: 2px 2px 0px var(--black), 0 0 15px rgba(135, 206, 235, 0.5);
}

.nav-link:hover .link-text {
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: bold;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.icon-text {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.icon-image {
    position: relative;
    z-index: 3;
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(135, 206, 235, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 2;
}

.social-icon:hover .icon-bg {
    transform: scale(1);
}

.social-icon:hover .icon-text {
    color: var(--white);
    transform: scale(1.2) rotate(10deg);
}

.social-icon:hover .icon-image {
    transform: scale(1.2) rotate(10deg);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.social-icon:active .icon-ripple {
    width: 60px;
    height: 60px;
}

.copy-btn {
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border: 2px solid var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 15px rgba(135, 206, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    border-radius: 25px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.btn-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleBurst 0.6s ease-out;
    opacity: 0;
}

.btn-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0.1s;
}

.btn-particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 0.2s;
}

.btn-particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 0.3s;
}

@keyframes particleBurst {
    0% {
        opacity: 0;
        transform: scale(0) translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1) translate(0, -10px);
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(0, -20px);
    }
}

.copy-btn:hover .btn-bg {
    transform: scale(1);
}

.copy-btn:hover .btn-shine {
    left: 100%;
}

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

.copy-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(135, 206, 235, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.copy-btn:active .btn-particle {
    animation: particleBurst 0.6s ease-out;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--white);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}


/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.doodles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.doodle {
    position: absolute;
    border: 3px solid var(--black);
    border-radius: 50%;
    animation: doodleFloat 6s ease-in-out infinite;
}

.doodle-1 {
    width: 25px;
    height: 25px;
    top: 10%;
    left: 5%;
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 0s;
}

.doodle-2 {
    width: 35px;
    height: 18px;
    top: 15%;
    right: 10%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: rgba(135, 206, 235, 0.2);
    animation-delay: 1s;
}

.doodle-3 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 8%;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: 2s;
}

.doodle-4 {
    width: 45px;
    height: 22px;
    top: 30%;
    right: 5%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: rgba(135, 206, 235, 0.3);
    animation-delay: 3s;
}

.doodle-5 {
    width: 20px;
    height: 20px;
    bottom: 30%;
    right: 15%;
    background: rgba(255, 255, 255, 0.5);
    animation-delay: 4s;
}

.doodle-6 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 3%;
    background: rgba(135, 206, 235, 0.2);
    animation-delay: 5s;
}

@keyframes doodleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Fredoka', cursive;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 4px 4px 0px var(--black), 0 0 30px rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 4px 4px 0px var(--black), 0 0 30px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 4px 4px 0px var(--black), 0 0 40px rgba(255, 255, 255, 0.8); }
}

.mascots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ippy-mascot-left,
.ippy-mascot-right {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 50%, var(--dark-blue) 100%);
    border-radius: 50% 30% 50% 30%;
    position: relative;
    animation: mascotFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
    border: 3px solid var(--white);
}

.ippy-mascot-left::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 50%;
    box-shadow: 0 18px 0 var(--black);
    animation: blink 3s ease-in-out infinite;
}

.ippy-mascot-left::after {
    content: '3';
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ippy-mascot-right::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 50%;
    box-shadow: 0 18px 0 var(--black);
    animation: blink 3s ease-in-out infinite;
}

.ippy-mascot-right::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 4px;
    background: var(--black);
    border-radius: 3px;
}

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

@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

.rocket-doodle {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border: 3px solid var(--black);
    border-radius: 50% 50% 0 0;
    animation: rocketFloat 2s ease-in-out infinite;
}

.rocket-doodle::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 25px solid var(--black);
}

@keyframes rocketFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--black);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.buy-now-btn {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 100%);
    border: 3px solid var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
    letter-spacing: 1px;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.5);
}

/* Enhanced Section Styles */
section {
    padding: 6rem 0;
    position: relative;
    background: transparent;
    margin: 2rem 0;
}


section h2 {
    font-family: 'Fredoka', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Enhanced About Section */
.about {
    background: transparent;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-mascot {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ippy-mascot-large {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 50%, var(--dark-blue) 100%);
    border-radius: 50% 30% 50% 30%;
    position: relative;
    animation: mascotFloat 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
    border: 4px solid var(--white);
}

.ippy-mascot-large::before {
    content: '3';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 50px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
}

.text-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.text-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.text-box p {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Enhanced How to Buy Section */
.how-to-buy {
    background: transparent;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.step p {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.step a {
    color: var(--sky-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.step a:hover {
    color: var(--light-blue);
}

.or {
    text-align: center;
    font-weight: 700;
    color: var(--white);
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced FAQ Section */
.faq {
    background: transparent;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-item p {
    color: var(--white);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Enhanced Ippyify Section */
.ippyify {
    background: linear-gradient(135deg, #ffc0d9 0%, var(--light-pink) 100%);
    text-align: center;
}

.ippyify p {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Enhanced Ecosystem Section */
.ecosystem {
    background: linear-gradient(135deg, var(--light-pink) 0%, #ffc0d9 100%);
    text-align: center;
}

.ecosystem p {
    font-size: 1.3rem;
    color: var(--black);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Enhanced Footer */
.footer {
    background: transparent;
    padding: 4rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer-social {
    margin-bottom: 2.5rem;
}

.footer-social .social-link {
    margin: 0 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-shadow: 2px 2px 0px var(--black);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-social .social-link:hover {
    color: var(--sky-blue);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.copyright {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-top {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 100%);
    border: 3px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-pink), var(--darker-pink));
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        border-top: 2px solid var(--white);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        border-radius: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .copy-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    section h2 {
        font-size: 2.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .mascots {
        flex-direction: column;
        gap: 3rem;
    }
    
    
    .ippy-mascot-large {
        width: 200px;
        height: 200px;
    }
    
    .ippy-mascot-large::before {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-social {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ippy-mascot-large {
        width: 180px;
        height: 180px;
    }
    
    .ippy-mascot-large::before {
        font-size: 35px;
    }
    
    .text-box, .step, .faq-item {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
