* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff69b4;
    --secondary-pink: #ff1493;
    --light-pink: #ffb6c1;
    --dark-pink: #c71585;
    --gradient-pink: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.falling-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 20px;
    color: var(--primary-pink);
    opacity: 0.7;
    animation: fall linear infinite;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.stars::after {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}

.heart-animation {
    font-size: 80px;
    animation: heartbeat 1.5s ease-in-out infinite;
    margin-bottom: 20px;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light-pink);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--light-pink);
    margin-bottom: 15px;
}

.countdown-subtitle {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.countdown-item {
    background: var(--gradient-pink);
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 150px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.declaration-section {
    padding: 60px 20px;
    margin: 40px 0;
}

.declaration-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.3);
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.declaration-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.declaration-content {
    line-height: 1.8;
}

.declaration-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
    opacity: 0.95;
}

.declaration-text.highlight {
    background: rgba(255, 20, 147, 0.2);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
    font-weight: 500;
    margin: 30px 0;
}

.declaration-signature {
    text-align: right;
    font-size: 1.3rem;
    color: var(--light-pink);
    margin-top: 40px;
    font-style: italic;
}

.signature-name {
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.memories-section {
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: carousel-scroll 70s linear infinite;
    gap: 20px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 auto;
    width: 700px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 105, 180, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-720px * 5));
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 450px;
        height: 220px;
    }
    
    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-470px * 5));
        }
    }
}

.gallery-section {
    padding: 60px 20px;
    text-align: center;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 40px;
    opacity: 0.9;
}

.video-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 105, 180, 0.3);
    background: rgba(255, 105, 180, 0.1);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}


.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 0 10px;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 105, 180, 0.3);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.photo-item:nth-child(2) {
    animation-delay: 1.4s;
}

.photo-item:nth-child(3) {
    animation-delay: 1.6s;
}

.photo-item:nth-child(4) {
    animation-delay: 1.8s;
}

.photo-item:nth-child(5) {
    animation-delay: 2s;
}

.photo-item:nth-child(6) {
    animation-delay: 2.2s;
}

.photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow);
    border-color: var(--primary-pink);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.7) 0%, rgba(199, 21, 133, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-heart {
    font-size: 3rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.add-photos-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.add-photos-note p {
    color: var(--light-pink);
    font-size: 0.95rem;
    opacity: 0.9;
}

.add-photos-note code {
    background: rgba(255, 20, 147, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: var(--light-pink);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(255, 20, 147, 0.5);
    border: 2px solid var(--primary-pink);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-pink);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 20, 147, 0.6);
    transform: rotate(90deg);
}

.story-section {
    padding: 60px 20px;
    margin: 40px 0;
}

.story-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 50px;
    opacity: 0.9;
}

.story-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-pink);
    transform: translateX(-50%);
    opacity: 0.3;
}

.story-item {
    position: relative;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out both;
}

.story-item:nth-child(1) { animation-delay: 0.1s; }
.story-item:nth-child(2) { animation-delay: 0.3s; }
.story-item:nth-child(3) { animation-delay: 0.5s; }
.story-item:nth-child(4) { animation-delay: 0.7s; }
.story-item:nth-child(5) { animation-delay: 0.9s; }

.story-item:nth-child(1) .story-content {
    margin-right: auto;
    margin-left: 0;
    max-width: 45%;
}

.story-item:nth-child(2) .story-content {
    margin-left: auto;
    margin-right: 0;
    max-width: 45%;
}

.story-item:nth-child(3) .story-content {
    margin-right: auto;
    margin-left: 0;
    max-width: 45%;
}

.story-item:nth-child(4) .story-content {
    margin-left: auto;
    margin-right: 0;
    max-width: 45%;
}

.story-item:nth-child(5) .story-content {
    margin-right: auto;
    margin-left: 0;
    max-width: 45%;
}

.story-content {
    background: rgba(255, 105, 180, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.story-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 105, 180, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-image-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.story-image-container:hover .story-image {
    transform: scale(1.05);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-pink);
    margin-bottom: 15px;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.95;
    text-align: justify;
}

.story-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.story-media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.story-media-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.5);
}

.story-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-media-item:hover img {
    transform: scale(1.1);
}

.story-video-container {
    margin-top: 20px;
}

.story-video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 105, 180, 0.3);
    background: rgba(255, 105, 180, 0.1);
}

.story-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.story-video-caption {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-pink);
    margin-top: 15px;
    font-style: italic;
    opacity: 0.9;
}

.discord-section {
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

.discord-subtitle {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 40px;
    opacity: 0.9;
}

.discord-profiles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.discord-mini-profile {
    width: 340px;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 1.1s both;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.discord-mini-profile:nth-child(2) {
    animation-delay: 1.3s;
}

.discord-banner {
    width: 100%;
    height: 120px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.discord-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-avatar-container {
    position: relative;
    padding: 0 16px;
    margin-top: -40px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: -20px;
}

.discord-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.discord-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.parapolly-avatar {
    border: 6px solid #000000;
    box-shadow: none;
}

.fanny-avatar {
    border: 6px solid #000000;
    box-shadow: none;
}

.discord-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.discord-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #000000;
    background: #747f8d;
}

.discord-status.online {
    background: #23a55a;
}

.discord-status.idle {
    background: #f0b232;
}

.discord-status.dnd {
    background: #f23f43;
}

.discord-status.offline {
    background: #747f8d;
}


.discord-status-bubble {
    background: #1e1f22;
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 8px;
    font-size: 14px;
    color: #dcddde;
    max-width: 200px;
    flex: 1;
    position: relative;
}

.discord-status-bubble::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #1e1f22;
}

.fanny-status {
    color: #ffffff;
}

.discord-profile-content {
    padding: 0 16px 16px;
    color: #ffffff;
    background: #000000;
    width: 100%;
    margin-top: -30px;
    padding-left: 16px;
}

.discord-username {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    margin-left: -40px;
}

.parapolly-username {
    color: #ffffff;
}

.fanny-username {
    color: #ffffff;
    font-size: 20px;
}

.discord-tag {
    font-size: 14px;
    color: #b9bbbe;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.discord-dot {
    color: #4f545c;
}

.discord-custom-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #2f3136;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-size: 12px;
}

.discord-moon {
    font-size: 12px;
}

.discord-tag-emojis {
    margin-left: 4px;
    font-size: 12px;
}

.discord-badges {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.discord-badge {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.discord-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.discord-mutual-info {
    font-size: 14px;
    color: #b9bbbe;
    margin-bottom: 12px;
}

.discord-about-me {
    font-size: 14px;
    color: #b9bbbe;
    padding-top: 12px;
    border-top: 1px solid #40444b;
}

.discord-emoji {
    font-size: 16px;
    margin-top: 4px;
    text-align: left;
}

.question-section {
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

.question-card {
    background: rgba(255, 105, 180, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.question-title {
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.question-text {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    min-height: 80px;
    padding: 20px;
}

.answer-btn {
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.yes-btn {
    background: var(--gradient-pink);
    color: var(--text-light);
}

.yes-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.5);
}

.definitely-btn {
    background: var(--gradient-pink);
    color: var(--text-light);
}

.definitely-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.5);
}

.no-btn {
    background: rgba(100, 100, 100, 0.5);
    color: var(--text-light);
    transition: all 0.2s ease;
    position: relative;
}

.no-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.no-btn.moving {
    transition: all 0.3s ease !important;
}

.response-message {
    min-height: 60px;
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-pink);
    animation: fadeIn 0.5s ease;
}

.response-message.show {
    background: rgba(255, 20, 147, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--primary-pink);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    text-align: center;
    padding: 60px 20px 40px;
    color: var(--light-pink);
}

.footer p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-heart {
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-container {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 20px 25px;
        min-width: 120px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .declaration-card {
        padding: 30px 20px;
    }
    
    .declaration-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .question-card {
        padding: 30px 20px;
    }
    
    .question-title {
        font-size: 2rem;
    }
    
    .question-text {
        font-size: 1.4rem;
    }
    
    .answer-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .buttons-container {
        gap: 15px;
    }
    
    .story-timeline::before {
        left: 20px;
    }
    
    .story-item:nth-child(odd) .story-content,
    .story-item:nth-child(even) .story-content {
        margin-left: 50px;
        margin-right: 0;
        max-width: calc(100% - 50px);
    }
    
    .story-media-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
}

