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

body {
    font-family: 'Fredoka', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Comic Neue', cursive;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.balloon {
    position: absolute;
    width: 12px;
    height: 16px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: balloonFloat 3s ease-in-out infinite;
}

.balloon-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    left: 0;
    animation-delay: 0s;
}

.balloon-2 {
    background: linear-gradient(135deg, #4ecdc4 0%, #26a69a 100%);
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.balloon-3 {
    background: linear-gradient(135deg, #ffe66d 0%, #ffc107 100%);
    right: 0;
    animation-delay: 1s;
}

.balloon-strings {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, #666 0%, transparent 100%);
}

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

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

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6b6b;
    transition: 0.3s;
    border-radius: 2px;
}

/* Button Styles */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
}

.btn-secondary {
    background: transparent;
    color: #ff6b6b;
    border: 3px solid #ff6b6b;
}

.btn-secondary:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-link:hover {
    color: #ff5252;
    transform: translateX(8px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fdfa 50%, #fffbeb 100%);
    color: #2d3748;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall 8s linear infinite;
}

.confetti-1 {
    background: #ff6b6b;
    left: 10%;
    animation-delay: 0s;
    border-radius: 50%;
}

.confetti-2 {
    background: #4ecdc4;
    left: 20%;
    animation-delay: 1s;
    transform: rotate(45deg);
}

.confetti-3 {
    background: #ffe66d;
    left: 30%;
    animation-delay: 2s;
    border-radius: 50%;
}

.confetti-4 {
    background: #a8e6cf;
    left: 50%;
    animation-delay: 3s;
    transform: rotate(45deg);
}

.confetti-5 {
    background: #ff8a80;
    left: 60%;
    animation-delay: 4s;
    border-radius: 50%;
}

.confetti-6 {
    background: #81c784;
    left: 70%;
    animation-delay: 5s;
    transform: rotate(45deg);
}

.confetti-7 {
    background: #ffb74d;
    left: 80%;
    animation-delay: 6s;
    border-radius: 50%;
}

.confetti-8 {
    background: #ba68c8;
    left: 90%;
    animation-delay: 7s;
    transform: rotate(45deg);
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.party-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 107, 107, 0.2));
    animation: bubbleFloat 6s ease-in-out infinite;
}

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

.bubble-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.bubble-5 {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Comic Neue', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.title-word {
    display: inline-block;
    animation: bounceIn 0.8s ease-out forwards;
    opacity: 0;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }
.title-word:nth-child(5) { animation-delay: 0.5s; }

.highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.party-stage {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 107, 0.2);
    padding: 2rem;
    overflow: hidden;
}

.entertainment-card {
    position: absolute;
    width: 180px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.4s ease;
    animation: cardBounce 6s ease-in-out infinite;
    text-align: center;
}

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

.card-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes cardBounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.entertainment-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.entertainment-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.card-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Comic Neue', cursive;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff5f5 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '🎉';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.service-cta {
    margin-top: auto;
}

/* Blog Section */
.blog {
    padding: 120px 0;
    background: white;
}

.blog-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.1);
    border: 3px solid rgba(255, 107, 107, 0.1);
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f7fafc;
}

.article-title {
    font-family: 'Comic Neue', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
}

.reading-stats {
    display: flex;
    gap: 1.5rem;
}

.reading-time,
.article-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.05rem;
}

.content-intro h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border-left: 5px solid #ff6b6b;
}

.highlight-section h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 2rem 0 1rem;
}

.reason-item {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border-left: 5px solid #4ecdc4;
}

.reason-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.psychology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.psychology-item {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.psychology-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.psychology-item h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.elements-list {
    margin: 2rem 0;
}

.element-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fdfa 100%);
    border-radius: 20px;
    border-left: 5px solid #ffe66d;
}

.element-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.event-type {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.event-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.event-type h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-type ul {
    list-style: none;
    padding-left: 0;
}

.event-type li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.event-type li::before {
    content: '🎈';
    position: absolute;
    left: 0;
}

.planning-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 107, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-item {
    padding: 2rem;
    background: linear-gradient(135deg, #fffbeb 0%, #f0f9ff 100%);
    border-radius: 20px;
    border-left: 5px solid #a8e6cf;
}

.tech-item h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.success-metrics {
    list-style: none;
    padding-left: 0;
}

.success-metrics li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f0fff4;
    border-radius: 15px;
    border-left: 4px solid #48bb78;
    position: relative;
    padding-left: 3rem;
}

.success-metrics li::before {
    content: '✨';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.highlight-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.highlight-link:hover {
    border-bottom-color: #ff6b6b;
    color: #ff5252;
}

.conclusion-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fff5f5 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 3px solid rgba(255, 107, 107, 0.1);
}

.conclusion-section h2 {
    font-family: 'Comic Neue', cursive;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

/* Events Section */
.events {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fdfa 100%);
}

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

.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.event-card h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.event-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.event-features {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.about-intro {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.value-propositions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-prop {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.prop-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.prop-content h4 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.prop-content p {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fdfa 100%);
    border-radius: 20px;
    border: 3px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

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

.stat-info .stat-number {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.stat-info .stat-label {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff5f5 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
    border: 3px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details span {
    color: #718096;
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.1);
    border: 3px solid rgba(255, 107, 107, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #718096;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-item:hover {
    background: #f8fafc;
    border-color: rgba(255, 107, 107, 0.2);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-color: #ff6b6b;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 107, 107, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .entertainment-card {
        width: 150px;
        padding: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .blog-article {
        padding: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .psychology-grid,
    .event-types,
    .tech-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem;
    }
    
    .blog-article {
        padding: 1.5rem;
    }
    
    .entertainment-card {
        width: 130px;
        padding: 0.8rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .confetti {
        width: 6px;
        height: 6px;
    }
    
    .bubble {
        transform: scale(0.7);
    }
}

