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

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --accent-color: #f8b500;
    --text-color: #2c3e50;
    --bg-light: #fff5f7;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-bg: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Landing Page */
.landing {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ff9a9e 100%);
    overflow: hidden;
}

.landing-content {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.landing-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.landing-name {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.landing-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.landing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    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: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-upload {
    background: var(--accent-color);
    color: white;
}

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

.heart {
    position: absolute;
    font-size: 2rem;
    animation: float 6s infinite ease-in-out;
    opacity: 0.7;
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { left: 30%; animation-delay: 1s; }
.heart:nth-child(3) { left: 50%; animation-delay: 2s; }
.heart:nth-child(4) { left: 70%; animation-delay: 3s; }
.heart:nth-child(5) { left: 90%; animation-delay: 4s; }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newspaper-Style Message Page */
.newspaper-page {
    min-height: calc(100vh - 80px);
    padding: 2rem 1rem;
    background: #f5f5f0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.newspaper-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.newspaper-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

/* Side Images Around Newspaper - Simple Background */
.newspaper-side-images {
    flex: 0 0 180px;
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 2rem 0.5rem;
    min-height: 400px;
    visibility: visible;
}

.left-side-images {
    order: -1;
}

.right-side-images {
    order: 1;
}

.side-image {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.5;
    filter: grayscale(40%) brightness(0.85);
    display: block !important;
    margin: 0;
    visibility: visible;
}

/* Newspaper Header */
.newspaper-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid #000;
    padding-bottom: 1rem;
}

.newspaper-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #000;
    text-transform: uppercase;
}

.newspaper-date-line {
    display: flex;
    justify-content: space-between;
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #333;
}

.newspaper-location {
    font-weight: 600;
}

.newspaper-date {
    font-style: italic;
}

.newspaper-divider {
    height: 2px;
    background: #000;
    margin-top: 1rem;
}

/* Main Headline */
.newspaper-headline {
    text-align: center;
    margin: 2rem 0 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #000;
}

.headline-main {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.headline-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 0.5rem;
}

/* Newspaper Content */
.newspaper-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.newspaper-column {
    font-family: 'Crimson Text', serif;
}

/* Newspaper Images */
.newspaper-image-container {
    margin: 1.5rem 0;
    width: 100%;
}

.newspaper-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    border: 2px solid #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Newspaper Articles */
.newspaper-article {
    line-height: 1.8;
    color: #1a1a1a;
}

.article-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #000;
}

.article-intro {
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.article-divider {
    height: 1px;
    background: #000;
    margin: 1rem 0;
}

.article-text {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: justify;
    color: #1a1a1a;
}

.article-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    color: #000;
}

/* Newspaper Navigation */
.newspaper-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
}

.nav-divider {
    height: 2px;
    background: #000;
    margin-bottom: 2rem;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #000;
    transition: all 0.3s;
    background: white;
    color: #000;
}

.nav-btn:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-btn-icon {
    font-size: 1.5rem;
}

.nav-btn-primary {
    border-color: #ff6b9d;
    color: #ff6b9d;
}

.nav-btn-primary:hover {
    background: #ff6b9d;
    color: white;
    border-color: #ff6b9d;
}

.nav-btn-secondary {
    border-color: #f8b500;
    color: #f8b500;
}

.nav-btn-secondary:hover {
    background: #f8b500;
    color: white;
    border-color: #f8b500;
}

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

/* Collage Page - Scrapbook Style */
.collage-page {
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    background: #1a1a2e;
    position: relative;
    overflow-x: hidden;
}

.collage-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200, 69, 105, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.collage-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
}

.collage-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.collage-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
}

.collage-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

.scrapbook-container {
    position: relative;
    min-height: calc(100vh - 300px);
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
    z-index: 1;
}

.scrapbook-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.scrapbook-content {
    position: relative;
    width: 100%;
    min-height: 1000px;
    padding: 40px 20px;
    display: block;
}

.scrapbook-photo-wrapper {
    position: absolute;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0.3s;
    width: 180px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scrapbook-photo-wrapper:hover {
    transform: scale(1.08) translateY(-5px) !important;
    z-index: 100 !important;
}

.scrapbook-photo {
    position: relative;
    width: 160px;
    height: 200px;
    background: white;
    padding: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.scrapbook-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.scrapbook-photo img.placeholder-image {
    object-fit: contain;
    background: transparent;
}

.photo-tape {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
    z-index: 5;
}

.tape-top {
    top: -8px;
    left: 20px;
    right: 20px;
    height: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tape-side {
    top: 30px;
    left: -8px;
    width: 20px;
    height: 60px;
    transform: rotate(2deg);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.scrapbook-caption-banner {
    margin-bottom: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    color: white;
    box-shadow: 
        0 4px 15px rgba(255, 107, 157, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 180px;
    word-wrap: break-word;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeInUp 0.3s;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.modal-content textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Polaroid Page */
.polaroid-page {
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    background: #1a1a2e;
    position: relative;
    overflow-x: hidden;
}

.polaroid-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200, 69, 105, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.polaroid-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
}

.polaroid-header {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.polaroid-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -1px;
}

.polaroid-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Image Gallery */
.polaroid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    padding: 2rem;
}

.gallery-image-container {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-image-container:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-image-container.selected {
    border-color: #ff6b9d;
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.8), 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-image-container.selected .gallery-overlay {
    background: rgba(255, 107, 157, 0.4);
    opacity: 1;
}

.checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.5);
    z-index: 10;
}

.gallery-image-container.selected .checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Selected Images Section */
.selected-images-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-images-section h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.selected-images {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.selected-images-section .btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-images-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.6);
}

.selected-preview-image {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.selected-preview-image:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: #ff6b9d;
}

.selected-preview-image::after {
    content: '✕';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.selected-preview-image:hover::after {
    opacity: 1;
    transform: scale(1);
}

.polaroid-strips-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.strip-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.polaroid-strip {
    background: linear-gradient(135deg, #f5deb3 0%, #f0e68c 100%);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.strip-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.ribbon-bow {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50% 50% 50% 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ribbon-bow::before,
.ribbon-bow::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    top: 20px;
}

.ribbon-bow::before {
    left: -20px;
}

.ribbon-bow::after {
    right: -20px;
}

.strip-photos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.photo-slot {
    width: 100%;
    height: 220px;
    background: #fff;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.photo-slot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-slot:hover img {
    transform: scale(1.05);
}

.empty-slot {
    background: #f9f9f9;
}

.add-photo-text {
    color: #999;
    font-size: 1.1rem;
}

.strip-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #ddd;
}

.strip-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c44569;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.strip-date {
    font-size: 0.9rem;
    color: #666;
}

.btn-download {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 200px;
}

.btn-download:hover {
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.6);
}

.btn-download:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .landing-title {
        font-size: 2.5rem;
    }
    
    .landing-name {
        font-size: 3rem;
    }
    
    .message-card {
        padding: 2rem 1.5rem;
    }
    
    .message-title {
        font-size: 2rem;
    }
    
    .newspaper-container {
        padding: 2rem 1.5rem;
    }
    
    .newspaper-title {
        font-size: 2.5rem;
    }
    
    .headline-main {
        font-size: 2.5rem;
    }
    
    .headline-sub {
        font-size: 2rem;
    }
    
    .newspaper-page {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .newspaper-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .newspaper-container {
        padding: 2rem 1.5rem;
    }
    
    .newspaper-side-images {
        flex-direction: row;
        flex: 0 0 auto;
        justify-content: center;
        padding: 1rem;
        gap: 1rem;
        order: 2;
    }
    
    .side-image {
        width: 120px;
        height: 160px;
    }
    
    .newspaper-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-btn {
        justify-content: center;
    }
    
    .polaroid-header h1 {
        font-size: 2.5rem;
    }
    
    .polaroid-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .selected-images-section {
        padding: 2rem 1.5rem;
    }
    
    .selected-preview-image {
        width: 100px;
        height: 130px;
    }
    
    .polaroid-strip {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .scrapbook-photo {
        width: 150px;
        height: 200px;
    }
    
    .scrapbook-caption {
        max-width: 170px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    /* Additional mobile improvements */
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .landing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 90%;
        max-width: 300px;
    }
    
    .newspaper-date-line {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .article-heading {
        font-size: 1.2rem;
    }
    
    .article-text {
        font-size: 1rem;
    }
    
    .collage-page {
        padding: 2rem 1rem;
    }
    
    .collage-header h1 {
        font-size: 2.5rem;
    }
    
    .scrapbook-container {
        padding: 1rem;
    }
    
    .scrapbook-content {
        padding: 20px 10px;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
    
    .scrapbook-photo-wrapper {
        width: 140px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 !important;
    }
    
    .scrapbook-photo {
        width: 140px;
        height: 175px;
        padding: 8px;
    }
    
    .scrapbook-caption {
        max-width: 140px;
        font-size: 0.75rem;
        padding: 6px 8px;
    }
    
    .scrapbook-content {
        position: relative;
        height: auto;
    }
    
    .polaroid-page {
        padding: 2rem 1rem;
    }
    
    .polaroid-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .selected-images-section .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-download {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .strip-photos {
        gap: 0.8rem;
    }
    
    .photo-slot {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .landing-title {
        font-size: 1.8rem;
    }
    
    .landing-name {
        font-size: 2rem;
    }
    
    .newspaper-title {
        font-size: 1.8rem;
    }
    
    .headline-main {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .headline-sub {
        font-size: 1.3rem;
    }
    
    .collage-header h1 {
        font-size: 2rem;
    }
    
    .polaroid-header h1 {
        font-size: 1.8rem;
    }
    
    .polaroid-gallery {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .scrapbook-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scrapbook-photo-wrapper {
        width: 120px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }
    
    .scrapbook-photo {
        width: 120px;
        height: 150px;
    }
    
    .scrapbook-caption {
        max-width: 120px;
        font-size: 0.7rem;
    }
    
    .newspaper-side-images {
        display: none; /* Hide side images on very small screens */
    }
    
    .selected-preview-image {
        width: 80px;
        height: 100px;
    }
    
    .strip-text {
        font-size: 1rem;
    }
    
    .strip-date {
        font-size: 0.75rem;
    }
}

