@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff6b9d;
    --primary-purple: #c44569;
    --secondary-orange: #f8b500;
    --secondary-blue: #3742fa;
    --accent-green: #2ed573;
    --warm-white: #ffeaa7;
    --soft-cream: #fff7e6;
    --text-dark: #2f3542;
    --text-gray: #57606f;
    --text-light: #a4b0be;
    --card-white: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --gradient-warm: linear-gradient(135deg, #ff6b9d 0%, #f8b500 100%);
    --gradient-cool: linear-gradient(135deg, #3742fa 0%, #c44569 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b9d 0%, #f8b500 50%, #2ed573 100%);
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

* {
    will-change: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--soft-cream);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.timeline-container {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.timeline-item {
    transform: translateZ(0);
}

/* Header with floating language toggle */
.language-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.lang-btn {
    background: var(--card-white);
    border: 3px solid var(--primary-pink);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-pink);
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.lang-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--primary-pink);
    color: white;
    box-shadow: var(--shadow-hover);
}

/* Hero Section - Playful and Warm */
.hero {
    min-height: 100vh;
    background: var(--gradient-sunset);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="70" r="1" fill="rgba(255,255,255,0.4)"/><circle cx="30" cy="80" r="2.5" fill="rgba(255,255,255,0.15)"/></svg>') repeat;
    /* Removed animation for better performance */
}

.hero-names {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    text-align: center;
}

.hero-names .name-anya,
.hero-names .name-gokhan {
    font-size: 4.5rem;
    font-weight: 900;
}

.hero-names .name-connector {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-date {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    transition: transform 0.2s ease;
}

.hero-date:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Friendship Names */
.friendship-names {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.name-anya,
.name-gokhan {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.name-anya {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-gokhan {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-connector {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 0 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.name-anya:hover,
.name-gokhan:hover {
    transform: scale(1.05);
}

/* Timeline Section - Beautiful Header */
.timeline {
    background: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.timeline::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"><path d="M20 20 Q30 10 40 20 T60 20 T80 20" stroke="rgba(255,107,157,0.1)" stroke-width="2" fill="none"/><circle cx="25" cy="25" r="3" fill="rgba(248,181,0,0.2)"/><circle cx="75" cy="75" r="2" fill="rgba(46,213,115,0.15)"/></svg>') repeat;
    opacity: 0.6;
}

.timeline .section-title {
    text-align: center;
    padding: 80px 40px 40px;
    position: relative;
    z-index: 2;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.timeline .section-title::before {
    content: '✨ 🌈 ✨';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--primary-pink);
    opacity: 0.8;
}

/* Removed sparkle animation for better performance */

.timeline .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* Timeline - Card-based Layout */
.timeline-container {
    padding: 60px 0 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    align-items: stretch;
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Removed slide animations for better performance */

.timeline-date {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.date-card {
    background: var(--card-white);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--primary-pink);
    transform: rotate(-5deg);
    transition: transform 0.2s ease;
    width: 100%;
}

.timeline-item:nth-child(even) .date-card {
    transform: rotate(5deg);
}

.date-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.date-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1.3;
}

.timeline-content {
    flex: 1;
    background: var(--card-white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.2s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-orange);
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-content a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: transform 0.2s ease;
}

.timeline-content a:hover {
    border-bottom-color: var(--secondary-blue);
}

/* Copy Button - Fun Style */
.copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-orange);
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.4);
}

.copy-btn:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(248, 181, 0, 0.6);
}

.copy-btn.copied {
    background: var(--accent-green);
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

/* Memory Images - Playful */
.memory-image, .memory-image-right {
    max-width: 200px;
    max-height: 200px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
    border: 4px solid var(--warm-white);
}

.memory-image {
    float: left;
    margin: 0 25px 20px 0;
    transform: rotate(-3deg);
}

.memory-image-right {
    float: right;
    margin: 0 0 20px 25px;
    transform: rotate(3deg);
}

.memory-image:hover, .memory-image-right:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Story Images Grid */
.story-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Story Content with Image Layout */
.story-content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}

.story-content-with-image .image-container {
    flex: 0 0 auto;
}

.story-content-with-image .story-text {
    flex: 1;
}

.story-content-with-image .story-text p {
    margin: 0;
}

/* Movie Content with Image Layout */
.movie-content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}

.movie-content-with-image .movie-text {
    flex: 1;
}

.movie-content-with-image .movie-image-container {
    flex: 0 0 auto;
}

.movie-content-with-image .movie-text p {
    margin: 0;
}

.movie-poster {
    width: 110px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
    border: 3px solid var(--warm-white);
}

.movie-poster:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Duolingo Content with Image Layout */
.duolingo-content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}

.duolingo-content-with-image .duolingo-image-container {
    flex: 0 0 auto;
}

.duolingo-content-with-image .duolingo-text {
    flex: 1;
}

.duolingo-content-with-image .duolingo-text p {
    margin: 0;
}

.duolingo-screenshot {
    width: 90px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
    border: 3px solid var(--warm-white);
}

.duolingo-screenshot:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.story-image {
    height: 200px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
    border: 4px solid var(--warm-white);
    object-fit: cover;
}

.story-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-hover);
}

/* Beautiful Words Section - Joyful */
.compliments-section {
    background: var(--gradient-cool);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compliments-section::before {
    content: '💝 ❤️ 🌟 ✨ 💕 🌸 🦋 🌈';
    position: absolute;
    top: 50%;
    left: -100px;
    font-size: 3rem;
    opacity: 0.1;
    /* Removed animation for better performance */
}

/* Removed floatEmojis animation for better performance */

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.compliment-box {
    background: var(--card-white);
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    border: 5px solid var(--warm-white);
    position: relative;
    overflow: hidden;
}

.compliment-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--primary-pink), var(--secondary-orange), var(--accent-green), var(--secondary-blue), var(--primary-pink));
    /* Removed animation for better performance */
    opacity: 0.1;
}

/* Removed rotate animation for better performance */

.compliment-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.new-quote-btn {
    background: var(--gradient-warm);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    position: relative;
    z-index: 2;
}

.new-quote-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

/* Thank You Section - Warm */
.gratitude {
    background: var(--warm-white);
    padding: 120px 0;
    position: relative;
}

.gratitude::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"><path d="M50 10 L60 35 L85 35 L65 55 L75 80 L50 65 L25 80 L35 55 L15 35 L40 35 Z" fill="rgba(255,107,157,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.gratitude-card {
    background: var(--card-white);
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    border: 6px solid var(--primary-pink);
    position: relative;
    z-index: 2;
}

.gratitude-card .section-title {
    color: var(--primary-pink);
    margin-bottom: 40px;
    text-shadow: none;
}

.gratitude-card p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-weight: 400;
}

/* Footer - Simple and Clean */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 60px 40px;
}

footer p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Happy Friendship Day Section - Special */
.friendship-special {
    background: var(--gradient-sunset) !important;
    border: none !important;
    color: white;
    text-align: center;
    padding: 80px 60px !important;
    border-radius: 40px !important;
    position: relative;
    overflow: hidden;
    margin: 80px auto !important;
    max-width: 1000px;
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.3) !important;
}

.friendship-special::before {
    content: '🎈 💖 ✨ 🌟 💕 🦋 🎉 🌈 🎈 💖 ✨ 🌟 💕 🦋 🎉 🌈';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    opacity: 0.2;
    /* Removed animation for better performance */
    z-index: 1;
}

/* Removed celebrateFloat animation for better performance */

.friendship-special::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 1;
}

/* Removed pulse animation for better performance */

.friendship-special > * {
    position: relative;
    z-index: 2;
}

.friendship-date {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
}

.friendship-special .section-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 50px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.final-message {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 40px !important;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.final-message:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

/* Clear floats */
.timeline-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-date {
        flex: 0 0 150px;
        margin: 0 20px;
    }
    
    .timeline-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-date {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .language-toggle {
        top: 20px;
        right: 20px;
    }
    
    .lang-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .timeline .section-title {
        padding: 60px 20px 30px;
    }
    
    .timeline .section-title::before {
        top: 20px;
        font-size: 1.5rem;
    }
    
    .timeline .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    .timeline-container {
        padding: 40px 20px 80px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
        align-items: center;
    }
    
    .timeline-date {
        margin: 0 0 30px 0;
        flex: none;
        width: 200px;
    }
    
    .date-card {
        transform: rotate(0deg) !important;
    }
    
    .timeline-content {
        padding: 25px 20px;
        width: 100%;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .copy-btn {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .memory-image, .memory-image-right {
        max-width: 150px;
        max-height: 150px;
        margin: 10px auto;
        float: none;
        display: block;
        transform: rotate(0deg);
    }
    
    .story-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-content-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .story-content-with-image .image-container {
        align-self: center;
    }

    .movie-content-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .movie-content-with-image .movie-image-container {
        align-self: center;
    }

    .movie-poster {
        width: 100px;
    }

    .duolingo-content-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .duolingo-content-with-image .duolingo-image-container {
        align-self: center;
    }

    .duolingo-screenshot {
        width: 80px;
    }

    .friendship-names {
        margin-bottom: 20px;
    }

    .name-anya,
    .name-gokhan {
        font-size: 2.5rem;
    }

    .name-connector {
        font-size: 2rem;
        margin: 0 15px;
    }

    .hero-names .name-anya,
    .hero-names .name-gokhan {
        font-size: 3rem;
    }

    .hero-names .name-connector {
        font-size: 2.5rem;
    }

    .hero-names {
        margin-bottom: 30px;
    }
    
    .compliments-section {
        padding: 80px 20px;
    }
    
    .compliment-box {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .compliment-text {
        font-size: 1.4rem;
        min-height: 60px;
    }
    
    .new-quote-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .gratitude {
        padding: 80px 20px;
    }
    
    .gratitude-card {
        padding: 50px 30px;
        margin: 0 20px;
    }
    
    .gratitude-card p {
        font-size: 1.1rem;
    }
    
    footer {
        padding: 40px 20px;
    }
    
    .friendship-special {
        padding: 50px 30px !important;
        margin: 60px 20px !important;
    }
    
    .friendship-special::before {
        font-size: 2rem;
    }
    
    .friendship-date {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .message-content p {
        font-size: 1.1rem;
    }
    
    .final-message {
        font-size: 1.2rem !important;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .timeline-date {
        width: 160px;
    }
    
    .date-card {
        padding: 20px 15px;
    }
    
    .date-card span {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 20px 16px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .memory-image, .memory-image-right {
        max-width: 120px;
        max-height: 120px;
    }
    
    .compliment-box {
        padding: 30px 20px;
    }
    
    .compliment-text {
        font-size: 1.2rem;
    }
    
    .gratitude-card {
        padding: 40px 20px;
    }
    
    .timeline .section-title {
        padding: 40px 16px 20px;
    }
    
    .timeline .section-title::before {
        top: 10px;
        font-size: 1.2rem;
    }
    
    .timeline .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .friendship-special {
        padding: 40px 20px !important;
        margin: 40px 16px !important;
    }
    
    .friendship-special::before {
        font-size: 1.5rem;
    }
    
    .friendship-date {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .message-content p {
        font-size: 1rem;
    }
    
    .final-message {
        font-size: 1.1rem !important;
        padding: 20px;
    }
    
    .hero-date {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}