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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: #ff6b9d;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.luxury-badge {
    font-size: 0.7rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 10px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b9d;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.summer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: float 20s infinite linear;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '💖';
    position: absolute;
    font-size: 2rem;
    animation: floatHearts 15s infinite linear;
    opacity: 0.3;
}

.floating-hearts::before {
    left: 10%;
    animation-delay: -5s;
}

.floating-hearts::after {
    left: 80%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes floatHearts {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 0 2rem;
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
    background: linear-gradient(45deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.9s both;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.image-container {
    position: relative;
    max-width: 400px;
    animation: slideInRight 1s ease-out;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.featured-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-profile {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* Love Buttons Styles */
.love-buttons-hero {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.love-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
    justify-content: center;
}

.love-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.love-btn:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
    animation: heartbeat 0.6s ease-in-out infinite;
}

.love-btn:active {
    transform: scale(0.9);
    animation: loveExplosion 0.8s ease-out;
}

.love-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.love-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Love Action Buttons */
.love-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.love-action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.love-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 154, 158, 0.4);
    background: linear-gradient(45deg, #fecfef, #ff9a9e);
}

.love-action-btn:active {
    animation: sweetPulse 0.4s ease-out;
}

/* Pulse Button Animation */
.pulse-btn {
    animation: gentlePulse 2s ease-in-out infinite;
}

.pulse-btn:hover {
    animation: strongPulse 0.6s ease-in-out infinite;
}

/* Interactive Love Buttons */
.interactive-love-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 1rem;
}

.interactive-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.interactive-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(45deg, #764ba2, #667eea);
}

.interactive-btn:active {
    animation: magicalSparkle 0.6s ease-out;
}

/* Floating Hearts and Stars for Profiles */
.floating-hearts-profile,
.floating-stars-profile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-hearts-profile::before,
.floating-hearts-profile::after {
    content: '💖';
    position: absolute;
    font-size: 1.2rem;
    animation: floatProfileHearts 8s infinite linear;
    opacity: 0.6;
}

.floating-hearts-profile::before {
    left: 20%;
    animation-delay: -2s;
}

.floating-hearts-profile::after {
    left: 70%;
    animation-delay: -5s;
}

.floating-stars-profile::before,
.floating-stars-profile::after {
    content: '✨';
    position: absolute;
    font-size: 1rem;
    animation: floatProfileStars 10s infinite linear;
    opacity: 0.7;
}

.floating-stars-profile::before {
    left: 30%;
    animation-delay: -3s;
}

.floating-stars-profile::after {
    left: 80%;
    animation-delay: -7s;
}

/* Love Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.3) rotate(15deg); }
}

@keyframes loveExplosion {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.4); box-shadow: 0 0 30px rgba(255, 107, 157, 0.8); }
    100% { transform: scale(1.2); }
}

@keyframes sweetPulse {
    0% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 30px rgba(255, 154, 158, 0.6); }
    100% { transform: translateY(-3px) scale(1); }
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6); }
}

@keyframes strongPulse {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.15); }
}

@keyframes magicalSparkle {
    0% { transform: translateY(-2px) scale(1.05); }
    25% { transform: translateY(-4px) scale(1.1) rotate(2deg); }
    50% { transform: translateY(-6px) scale(1.15) rotate(-2deg); box-shadow: 0 12px 35px rgba(102, 126, 234, 0.8); }
    75% { transform: translateY(-4px) scale(1.1) rotate(1deg); }
    100% { transform: translateY(-2px) scale(1.05); }
}

@keyframes floatProfileHearts {
    0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}

@keyframes floatProfileStars {
    0% { transform: translateY(100%) rotate(0deg) scale(0.5); opacity: 0; }
    10% { opacity: 0.7; }
    50% { transform: translateY(50%) rotate(180deg) scale(1); }
    90% { opacity: 0.7; }
    100% { transform: translateY(-20px) rotate(360deg) scale(0.5); opacity: 0; }
}

/* Stories Section */
.stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.stories .section-title {
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.story-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.story-card:nth-child(even) .story-image {
    order: 2;
}

.story-card:nth-child(even) .story-content {
    order: 1;
}

.story-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.love-meter {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.love-fill {
    height: 8px;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border-radius: 4px;
    transition: width 2s ease;
    margin-bottom: 5px;
    animation: fillLove 3s ease-in-out;
}

.love-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.story-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.story-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.story-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.story-age {
    color: #666;
    font-weight: 500;
}

.story-status {
    color: #ff6b9d;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-section {
    margin-bottom: 1.5rem;
}

.story-section h4 {
    font-family: 'Playfair Display', serif;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.love-story {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.story-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes fillLove {
    0% { width: 0%; }
    100% { width: var(--love-width, 85%); }
}

/* Love meter data attributes */
.love-fill[data-love="85"] { --love-width: 85%; width: 85%; }
.love-fill[data-love="92"] { --love-width: 92%; width: 92%; }
.love-fill[data-love="78"] { --love-width: 78%; width: 78%; }
.love-fill[data-love="89"] { --love-width: 89%; width: 89%; }
.love-fill[data-love="94"] { --love-width: 94%; width: 94%; }
.love-fill[data-love="87"] { --love-width: 87%; width: 87%; }

/* Extended Gallery Section */
.extended-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.extended-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-pattern)"/></svg>');
    opacity: 0.3;
}

.extended-gallery .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.extended-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.premium-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.premium-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-card:hover .premium-image img {
    transform: scale(1.1);
}

.premium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.premium-card:hover .premium-overlay {
    transform: translateY(0);
}

.premium-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.premium-buttons {
    display: flex;
    gap: 0.5rem;
}

.premium-btn {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border: none;
    border-radius: 15px;
    padding: 8px 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    background: linear-gradient(45deg, #ffd700, #ff6b9d);
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.feature-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

/* Love Mini Games Section */
.love-games {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #667eea 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.love-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="game-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,255,255,0.1)"/><path d="M8 12.5 L12.5 8 L17 12.5 L12.5 17 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23game-pattern)"/></svg>');
    opacity: 0.3;
}

.love-games .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: gamesTitleGlow 3s ease-in-out infinite;
}

.love-games .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.game-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.game-card:hover::before {
    opacity: 1;
    animation: gameCardShine 1.5s ease-in-out infinite;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.game-header {
    margin-bottom: 1.5rem;
}

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

.game-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.game-preview {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Game Preview Styles */
.memory-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.memory-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1.5rem;
    animation: memoryCardFlip 2s ease-in-out infinite;
}

.kiss-preview {
    position: relative;
    width: 100%;
    height: 80px;
}

.falling-kiss {
    position: absolute;
    font-size: 1.5rem;
    animation: kissFall 2s ease-in-out infinite;
}

.falling-kiss:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.falling-kiss:nth-child(2) {
    left: 70%;
    animation-delay: 1s;
}

.kiss-catcher {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: catcherMove 3s ease-in-out infinite;
}

.puzzle-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.puzzle-piece {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1.5rem;
    animation: puzzlePieceRotate 3s ease-in-out infinite;
}

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

.quiz-question {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: white;
    animation: quizOptionPulse 2s ease-in-out infinite;
}

.rhythm-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.rhythm-note {
    font-size: 2rem;
    animation: rhythmBounce 1s ease-in-out infinite;
}

.rhythm-note:nth-child(2) {
    animation-delay: 0.3s;
}

.rhythm-heart {
    font-size: 2.5rem;
    animation: rhythmHeartBeat 1.5s ease-in-out infinite;
}

.garden-preview {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
}

.flower {
    font-size: 2rem;
    animation: flowerGrow 2s ease-in-out infinite;
}

.flower:nth-child(2) {
    animation-delay: 0.5s;
}

.flower:nth-child(3) {
    animation-delay: 1s;
}

.watering-can {
    font-size: 1.5rem;
    animation: wateringCanTilt 3s ease-in-out infinite;
}

.play-btn {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
    background: linear-gradient(45deg, #ffd700, #ff6b9d);
}

/* Game Modal Styles */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: gameModalFadeIn 0.3s ease-out;
}

.game-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-modal-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.game-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.game-modal-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.close-game {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-game:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.game-area {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    min-height: 400px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
}

.game-score, .game-level {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.restart-btn {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* Game Animations */
@keyframes gamesTitleGlow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

@keyframes gameCardShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

@keyframes memoryCardFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes kissFall {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

@keyframes catcherMove {
    0%, 100% { transform: translateX(-50%) translateX(-20px); }
    50% { transform: translateX(-50%) translateX(20px); }
}

@keyframes puzzlePieceRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

@keyframes quizOptionPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes rhythmBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

@keyframes rhythmHeartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes flowerGrow {
    0% { transform: scale(0.8) translateY(10px); }
    50% { transform: scale(1.2) translateY(-5px); }
    100% { transform: scale(1) translateY(0px); }
}

@keyframes wateringCanTilt {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg); }
}

@keyframes gameModalFadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Individual Game Styles */
.memory-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.memory-game-card {
    width: 80px;
    height: 80px;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.memory-game-card.flipped {
    transform: rotateY(180deg);
}

.memory-game-card.matched {
    transform: rotateY(180deg) scale(1.1);
    border: 2px solid #ffd700;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-back {
    transform: rotateY(180deg);
    background: rgba(255, 215, 0, 0.3);
}

.kiss-game-container {
    width: 100%;
    max-width: 500px;
}

.kiss-game-area {
    position: relative;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.kiss-catcher {
    position: absolute;
    bottom: 10px;
    font-size: 3rem;
    transform: translateX(-50%);
    transition: left 0.3s ease;
}

.falling-game-kiss {
    position: absolute;
    font-size: 2rem;
    animation: gameFallAnimation 3s linear;
}

.kiss-game-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.kiss-game-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kiss-game-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.kiss-stats {
    text-align: center;
    color: white;
    font-weight: 600;
}

.puzzle-game-container {
    width: 100%;
    max-width: 400px;
}

.puzzle-target {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.puzzle-slot {
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.puzzle-slot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.puzzle-slot.completed {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    border-style: solid;
}

.puzzle-pieces {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.puzzle-piece {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.puzzle-piece:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.puzzle-piece.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.2);
}

.quiz-container {
    text-align: center;
    max-width: 500px;
}

.quiz-progress {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quiz-question-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quiz-option-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 15px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quiz-option-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.rhythm-game-container {
    width: 100%;
    max-width: 500px;
}

.rhythm-track {
    position: relative;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rhythm-target {
    font-size: 3rem;
    animation: rhythmTargetPulse 1s ease-in-out infinite;
}

.rhythm-note-game {
    position: absolute;
    font-size: 2rem;
    top: 50%;
    transform: translateY(-50%);
    animation: rhythmNoteMove 3s linear;
}

.rhythm-controls {
    text-align: center;
    margin-bottom: 1rem;
}

.rhythm-btn {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rhythm-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.rhythm-stats {
    text-align: center;
    color: white;
    font-weight: 600;
}

.garden-game-container {
    width: 100%;
    max-width: 400px;
}

.garden-plot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(139, 69, 19, 0.3);
    border-radius: 15px;
}

.garden-slot {
    width: 80px;
    height: 80px;
    background: rgba(101, 67, 33, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 69, 19, 0.5);
}

.garden-slot:hover {
    transform: scale(1.05);
    border-color: rgba(139, 69, 19, 0.8);
}

.garden-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.garden-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.garden-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.garden-stats {
    text-align: center;
    color: white;
    font-weight: 600;
}

/* Game Notification Styles */
.game-notification {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(45deg, #ff6b9d, #667eea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10004;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-notification-message {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Game Animation Keyframes */
@keyframes gameFallAnimation {
    0% { transform: translateY(-50px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(350px); opacity: 0; }
}

@keyframes rhythmTargetPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes rhythmNoteMove {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}

/* Profiles Section */
.profiles {
    padding: 100px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.profiles .section-title {
    color: white;
}

.profiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.status-badge {
    background: #4CAF50;
}

.status-badge.away {
    background: #FF9800;
}

.profile-info {
    padding: 2rem;
}

.profile-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.age {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-btn {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.about .section-title {
    color: #333;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact .section-title {
    color: white;
}

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.contact-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

/* Winter Love Social Media Links */
.winter-love-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: winterFloat 4s ease-in-out infinite;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #87CEEB, #E0E6FF, #B0E0E6, #F0F8FF);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: winterGradient 6s ease-in-out infinite;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

/* Individual social network colors */
.instagram-link::after {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
}

.twitter-link::after {
    background: linear-gradient(45deg, #1DA1F2, #0084B4, #00ACED);
}

.facebook-link::after {
    background: linear-gradient(45deg, #1877F2, #166FE5, #0E4F99);
}

.discord-link::after {
    background: linear-gradient(45deg, #7289DA, #5865F2, #4752C4);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.2) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: winterDance 0.6s ease-in-out infinite;
}

.social-link:hover::before {
    animation: winterStorm 0.8s ease-in-out infinite;
}

/* Winter Sparkles Effect */
.winter-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    overflow: hidden;
}

.winter-sparkles::before,
.winter-sparkles::after {
    content: '❄️';
    position: absolute;
    font-size: 0.8rem;
    opacity: 0;
    animation: snowfall 3s linear infinite;
}

.winter-sparkles::before {
    left: 20%;
    animation-delay: 0s;
}

.winter-sparkles::after {
    left: 70%;
    animation-delay: 1.5s;
}

.social-link:hover .winter-sparkles::before,
.social-link:hover .winter-sparkles::after {
    opacity: 1;
    animation: snowfallActive 1s linear infinite;
}

/* Social Tooltips */
.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #87CEEB, #E0E6FF);
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    bottom: -35px;
    animation: tooltipGlow 1s ease-in-out infinite;
}

/* Winter Love Animations */
@keyframes winterFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-3px) rotate(-2deg);
    }
}

@keyframes winterGradient {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 100% 50%;
        filter: hue-rotate(90deg);
    }
    50% {
        background-position: 50% 100%;
        filter: hue-rotate(180deg);
    }
    75% {
        background-position: 50% 0%;
        filter: hue-rotate(270deg);
    }
}

@keyframes winterDance {
    0%, 100% {
        transform: translateY(-10px) scale(1.2) rotate(10deg);
    }
    25% {
        transform: translateY(-15px) scale(1.25) rotate(15deg);
    }
    50% {
        transform: translateY(-12px) scale(1.3) rotate(5deg);
    }
    75% {
        transform: translateY(-18px) scale(1.25) rotate(20deg);
    }
}

@keyframes winterStorm {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
        filter: brightness(1) hue-rotate(0deg);
    }
    25% {
        background-position: 100% 50%;
        transform: scale(1.1) rotate(90deg);
        filter: brightness(1.2) hue-rotate(90deg);
    }
    50% {
        background-position: 50% 100%;
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.4) hue-rotate(180deg);
    }
    75% {
        background-position: 50% 0%;
        transform: scale(1.1) rotate(270deg);
        filter: brightness(1.2) hue-rotate(270deg);
    }
}

@keyframes snowfall {
    0% {
        top: -10px;
        opacity: 0;
        transform: translateX(0px) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 70px;
        opacity: 0;
        transform: translateX(20px) rotate(360deg);
    }
}

@keyframes snowfallActive {
    0% {
        top: -10px;
        opacity: 0;
        transform: translateX(0px) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(10px) rotate(180deg) scale(1.2);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 70px;
        opacity: 0;
        transform: translateX(20px) rotate(360deg) scale(0.8);
    }
}

@keyframes tooltipGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(135, 206, 235, 0.6);
        transform: translateX(-50%) scale(1.05);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    position: relative;
    overflow: hidden;
}

/* Animated Credit Section */
.animated-credit {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(45deg, #ff6b9d, #ffd700, #ff6b9d);
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.credit-hearts {
    font-size: 1.5rem;
    animation: heartWave 3s ease-in-out infinite;
    margin: 0.5rem 0;
    letter-spacing: 5px;
}

.credit-hearts:first-child {
    animation-delay: 0s;
}

.credit-hearts:last-of-type {
    animation-delay: 1.5s;
}

.credit-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.credit-made {
    animation: textBounce 2s ease-in-out infinite;
    animation-delay: 0.2s;
}

.credit-heart {
    font-size: 1.8rem;
    animation: heartPulseWild 1s ease-in-out infinite;
    display: inline-block;
}

.credit-love {
    background: linear-gradient(45deg, #fff, #ffd700, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 2s ease-in-out infinite, textBounce 2s ease-in-out infinite;
    animation-delay: 0.4s, 0.6s;
    font-weight: 700;
}

.credit-by {
    animation: textBounce 2s ease-in-out infinite;
    animation-delay: 0.8s;
}

.credit-link {
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.credit-company {
    background: linear-gradient(45deg, #fff, #ff6b9d, #ffd700, #fff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: companyGlow 3s ease-in-out infinite, textBounce 2s ease-in-out infinite;
    animation-delay: 0s, 1s;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.credit-link:hover .credit-company {
    animation: companyGlowHover 0.5s ease-in-out infinite, wildShake 0.3s ease-in-out infinite;
}

.link-sparkles {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    opacity: 0;
    animation: sparkleAppear 2s ease-in-out infinite;
    letter-spacing: 3px;
}

.credit-link:hover .link-sparkles {
    opacity: 1;
    animation: sparkleWild 0.6s ease-in-out infinite, sparkleFloat 2s ease-in-out infinite;
}

.floating-summer-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.summer-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: summerFloat 8s linear infinite;
}

.summer-element:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.summer-element:nth-child(2) {
    left: 20%;
    animation-delay: -1s;
    animation-duration: 7s;
}

.summer-element:nth-child(3) {
    left: 40%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.summer-element:nth-child(4) {
    left: 60%;
    animation-delay: -3s;
    animation-duration: 6.5s;
}

.summer-element:nth-child(5) {
    left: 80%;
    animation-delay: -4s;
    animation-duration: 7.5s;
}

.summer-element:nth-child(6) {
    left: 90%;
    animation-delay: -5s;
    animation-duration: 9s;
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeInOut 4s ease-in-out infinite;
}

.copyright-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.copyright-link:hover {
    color: #ff6b9d;
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.8);
    animation: copyrightGlow 0.5s ease-in-out infinite;
}

/* Music Control Styles */
.music-control {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
}

.music-btn {
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    animation: musicPulse 2s ease-in-out infinite;
}

.music-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
    animation: musicDance 0.6s ease-in-out infinite;
}

.music-btn.muted {
    background: linear-gradient(45deg, #666, #999);
    animation: none;
}

.music-icon {
    font-size: 1.2rem;
    animation: musicNote 1.5s ease-in-out infinite;
}

.music-btn.muted .music-icon {
    animation: none;
}

.music-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wild Summer Love Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 50% 0%; }
}

@keyframes heartWave {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-5px) scale(1.1) rotate(5deg); }
    50% { transform: translateY(0px) scale(1.2) rotate(-5deg); }
    75% { transform: translateY(-3px) scale(1.1) rotate(3deg); }
}

@keyframes textBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(0px) scale(1.1); }
    75% { transform: translateY(-2px) scale(1.05); }
}

@keyframes heartPulseWild {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.3) rotate(10deg); }
    50% { transform: scale(1.6) rotate(-10deg); }
    75% { transform: scale(1.3) rotate(5deg); }
}

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

@keyframes companyGlow {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 157, 0.5));
    }
    33% {
        background-position: 100% 50%;
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
    }
    66% {
        background-position: 50% 100%;
        transform: scale(1.02);
        filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6));
    }
}

@keyframes companyGlowHover {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.8)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1)) drop-shadow(0 0 35px rgba(255, 107, 157, 0.8));
    }
}

@keyframes wildShake {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    50% { transform: translateX(2px) rotate(1deg); }
    75% { transform: translateX(-1px) rotate(-0.5deg); }
}

@keyframes sparkleAppear {
    0%, 70% { opacity: 0; transform: translateX(-50%) translateY(0px) scale(0.5); }
    80% { opacity: 0.8; transform: translateX(-50%) translateY(-5px) scale(1); }
    90% { opacity: 1; transform: translateX(-50%) translateY(-8px) scale(1.2); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px) scale(0.8); }
}

@keyframes sparkleWild {
    0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
    25% { transform: translateX(-60%) scale(1.3) rotate(90deg); }
    50% { transform: translateX(-40%) scale(1.6) rotate(180deg); }
    75% { transform: translateX(-55%) scale(1.2) rotate(270deg); }
}

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

@keyframes summerFloat {
    0% {
        transform: translateY(100px) translateX(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(20px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(-20px) translateX(15px) rotate(270deg) scale(1.1);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(0px) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

@keyframes copyrightGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 107, 157, 0.8); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 107, 157, 0.8); }
}

@keyframes musicPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
    }
}

@keyframes musicDance {
    0%, 100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
    25% { transform: translateY(-5px) scale(1.08) rotate(2deg); }
    50% { transform: translateY(-4px) scale(1.1) rotate(0deg); }
    75% { transform: translateY(-6px) scale(1.08) rotate(-2deg); }
}

@keyframes musicNote {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.3) rotate(0deg); }
    75% { transform: scale(1.2) rotate(-10deg); }
}

/* Dimensional Switcher Styles */
.dimensional-switcher {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1002;
}

.dimension-portal {
    position: relative;
}

.dimension-button {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: radial-gradient(circle, #667eea, #764ba2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: portalFloat 4s ease-in-out infinite;
}

.dimension-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    animation: portalPulse 0.6s ease-in-out infinite;
}

.dimension-button.active {
    animation: portalActive 1s ease-in-out infinite;
}

.portal-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: portalRingRotate 3s linear infinite;
}

.portal-ring:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-duration: 3s;
}

.portal-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    top: 17.5px;
    left: 17.5px;
    animation-duration: 2s;
    animation-direction: reverse;
}

.portal-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 25px;
    left: 25px;
    animation-duration: 1.5s;
}

.portal-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dimension-icon {
    font-size: 1.5rem;
    animation: dimensionIconSpin 2s ease-in-out infinite;
}

.dimension-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Dimension Menu */
.dimension-menu {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
    padding: 20px;
    min-width: 300px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1003;
}

.dimension-menu.active {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    animation: dimensionMenuAppear 0.6s ease-out;
}

.dimension-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: dimensionTitleGlow 2s ease-in-out infinite;
}

.dimension-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dimension-option {
    background: linear-gradient(45deg, var(--dim-color), transparent);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dimension-option:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.dimension-preview {
    width: 100%;
    height: 40px;
    background: var(--dim-color);
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.dimension-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: dimensionPreviewShine 2s ease-in-out infinite;
}

.dimension-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dimension-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dimension-particles::before,
.dimension-particles::after {
    content: '✨';
    position: absolute;
    font-size: 0.8rem;
    opacity: 0.6;
    animation: dimensionParticleFloat 3s ease-in-out infinite;
}

.dimension-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.dimension-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Dimension Indicator */
.dimension-indicator {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
}

.current-dimension {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: dimensionIndicatorFloat 3s ease-in-out infinite;
}

.dimension-number {
    background: rgba(255, 255, 255, 0.3);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.dimension-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Dimensional Effects */
.dimensional-rift {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    animation: dimensionalRiftAppear 2s ease-out forwards;
}

.rift-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, #ff6b9d, #ffd700, #fff, transparent);
    transform: translateY(-50%) scaleX(0);
    animation: riftLineExpand 1s ease-out forwards;
}

.rift-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: riftEnergyExpand 1.5s ease-out forwards;
}

.rift-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.rift-particles::before,
.rift-particles::after {
    content: '⚡';
    position: absolute;
    font-size: 2rem;
    color: #ffd700;
    animation: riftParticleMove 1s ease-out forwards;
}

.rift-particles::before {
    left: 30%;
    animation-delay: 0.3s;
}

.rift-particles::after {
    right: 30%;
    animation-delay: 0.6s;
}

.reality-warp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: realityWarpEffect 2s ease-out forwards;
}

/* Dimensional Notifications */
.dimensional-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 2rem 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10003;
    opacity: 0;
    transition: all 0.5s ease;
    text-align: center;
    max-width: 500px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.dimensional-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.dimensional-notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.dimensional-notification-icon {
    font-size: 2rem;
    animation: dimensionalIconSpin 1s ease-in-out infinite;
}

.dimensional-notification-message {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Section Notifications */
.section-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.95), rgba(255, 215, 0, 0.95));
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.section-notification.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.section-notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-notification-message {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section-progress-dots {
    display: flex;
    gap: 8px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.progress-dot.active {
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

/* Dimensional Animations */
@keyframes portalFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: translateY(-55%) rotate(180deg);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    }
}

@keyframes portalPulse {
    0%, 100% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 16px 45px rgba(102, 126, 234, 0.8);
    }
}

@keyframes portalActive {
    0%, 100% {
        transform: scale(1.1) rotate(0deg);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.8);
    }
}

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

@keyframes dimensionIconSpin {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(90deg);
    }
    50% {
        transform: scale(1.4) rotate(180deg);
    }
    75% {
        transform: scale(1.2) rotate(270deg);
    }
}

@keyframes dimensionMenuAppear {
    0% {
        transform: translateY(-50%) scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-50%) scale(1.2) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes dimensionTitleGlow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

@keyframes dimensionPreviewShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes dimensionParticleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

@keyframes dimensionIndicatorFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }
}

@keyframes portalRingExpansion {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3) rotate(360deg);
        opacity: 0;
    }
}

@keyframes dimensionalRiftAppear {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes riftLineExpand {
    0% { transform: translateY(-50%) scaleX(0); }
    100% { transform: translateY(-50%) scaleX(1); }
}

@keyframes riftEnergyExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

@keyframes riftParticleMove {
    0% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-50px) scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes realityWarpEffect {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: blur(20px);
    }
    50% {
        opacity: 0.8;
        transform: scale(2);
        filter: blur(5px);
    }
    100% {
        opacity: 0;
        transform: scale(4);
        filter: blur(0px);
    }
}

@keyframes dimensionalExplosion {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        transform: translate(-50%, -50%) translate(calc((var(--end-x) - 50%) * 0.3), calc((var(--end-y) - 50%) * 0.3)) scale(2) rotate(90deg);
        opacity: 0.9;
        filter: hue-rotate(90deg) brightness(1.5);
    }
    50% {
        transform: translate(-50%, -50%) translate(calc((var(--end-x) - 50%) * 0.7), calc((var(--end-y) - 50%) * 0.7)) scale(3) rotate(180deg);
        opacity: 0.7;
        filter: hue-rotate(180deg) brightness(2);
    }
    75% {
        transform: translate(-50%, -50%) translate(calc(var(--end-x) - 50%), calc(var(--end-y) - 50%)) scale(2) rotate(270deg);
        opacity: 0.5;
        filter: hue-rotate(270deg) brightness(1.5);
    }
    100% {
        transform: translate(-50%, -50%) translate(calc(var(--end-x) - 50%), calc(var(--end-y) - 50%)) scale(0.2) rotate(var(--rotation));
        opacity: 0;
        filter: hue-rotate(360deg) brightness(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

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

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

    .profiles-container {
        grid-template-columns: 1fr;
    }

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

    .love-buttons-hero {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }

    .love-action-buttons {
        grid-template-columns: 1fr;
    }

    .interactive-love-buttons {
        grid-template-columns: 1fr;
    }

    .story-card {
        grid-template-columns: 1fr;
    }

    .story-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .story-card:nth-child(even) .story-image {
        order: 1;
    }

    .story-card:nth-child(even) .story-content {
        order: 2;
    }

    .story-image {
        height: 250px;
    }

    .love-meter {
        min-width: 150px;
    }

    .sweet-notification {
        max-width: 300px;
        padding: 1.5rem 2rem;
    }

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

    .animated-credit {
        padding: 1.5rem 1rem;
        margin: 0 1rem 1rem 1rem;
    }

    .credit-text {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .credit-company {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .credit-hearts {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .summer-element {
        font-size: 1.2rem;
    }

    .floating-summer-elements {
        display: none; /* Hide on mobile for performance */
    }

    .music-control {
        top: 80px;
        right: 10px;
    }

    .music-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .music-text {
        font-size: 0.8rem;
    }

    .music-icon {
        font-size: 1rem;
    }

    .winter-love-social {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }

    .social-tooltip {
        font-size: 0.7rem;
        padding: 6px 10px;
        bottom: -35px;
    }

    .winter-notification {
        max-width: 300px;
        padding: 1.5rem 2rem;
        top: 25%;
    }

    .winter-notification-message {
        font-size: 1rem;
    }

    .dimensional-switcher {
        right: 15px;
        top: 45%;
    }

    .dimension-button {
        width: 60px;
        height: 60px;
    }

    .portal-ring:nth-child(1) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }

    .portal-ring:nth-child(2) {
        width: 35px;
        height: 35px;
        top: 12.5px;
        left: 12.5px;
    }

    .portal-ring:nth-child(3) {
        width: 25px;
        height: 25px;
        top: 17.5px;
        left: 17.5px;
    }

    .dimension-icon {
        font-size: 1.2rem;
    }

    .dimension-text {
        font-size: 0.5rem;
    }

    .dimension-menu {
        right: 80px;
        min-width: 250px;
        padding: 15px;
    }

    .dimension-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .dimension-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dimension-option {
        padding: 12px;
    }

    .dimension-name {
        font-size: 0.8rem;
    }

    .dimension-indicator {
        top: 20px;
        right: 15px;
    }

    .current-dimension {
        padding: 8px 15px;
        gap: 8px;
    }

    .dimension-number {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .dimension-label {
        font-size: 0.8rem;
    }

    .dimensional-notification {
        max-width: 300px;
        padding: 1.5rem 2rem;
    }

    .dimensional-notification-message {
        font-size: 1rem;
    }

    .dimensional-notification-icon {
        font-size: 1.5rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-card {
        margin: 0 1rem;
    }

    .premium-image {
        height: 250px;
    }

    .premium-overlay {
        padding: 1.5rem;
    }

    .premium-overlay h4 {
        font-size: 1.1rem;
    }

    .premium-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .premium-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .premium-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .game-icon {
        font-size: 2.5rem;
    }

    .game-card h3 {
        font-size: 1.2rem;
    }

    .game-preview {
        min-height: 100px;
        padding: 1rem;
    }

    .memory-game-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 300px;
    }

    .memory-game-card {
        width: 60px;
        height: 60px;
    }

    .card-front, .card-back {
        font-size: 1.5rem;
    }

    .kiss-game-area {
        height: 200px;
    }

    .kiss-catcher {
        font-size: 2rem;
    }

    .falling-game-kiss {
        font-size: 1.5rem;
    }

    .puzzle-target {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }

    .puzzle-slot {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .puzzle-piece {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .quiz-option-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .rhythm-track {
        height: 120px;
    }

    .rhythm-target {
        font-size: 2rem;
    }

    .rhythm-note-game {
        font-size: 1.5rem;
    }

    .rhythm-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .garden-plot {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .garden-slot {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .garden-controls {
        flex-direction: column;
        gap: 0.8rem;
    }

    .game-modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .game-area {
        padding: 1.5rem;
        min-height: 300px;
    }

    .game-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
