/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --pink: #ffd4d4;
    --light-bg: #faf8f5;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #ffd4d4 0%, #f8e5e5 50%, #e5f0f8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
}

.wedding-title {
    animation: fadeInUp 1.5s ease;
}

.save-date {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--secondary-color);
    animation: fadeIn 2s ease;
}

.couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    font-weight: 400;
    margin: 20px 0;
    line-height: 1.2;
}

.bride-name, .groom-name {
    display: block;
    animation: fadeInLeft 1.5s ease;
}

.groom-name {
    animation: fadeInRight 1.5s ease;
}

.and {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 20px 0;
    opacity: 0;
    animation: scaleIn 1s ease 0.5s forwards;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    gap: 20px;
}

.divider .line {
    width: 100px;
    height: 1px;
    background: var(--primary-color);
}

.divider .icon {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease infinite;
}

.wedding-date {
    font-size: 2rem;
    letter-spacing: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Floating Hearts */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.heart {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 182, 193, 0.6);
    animation: floatUp 10s infinite ease-in;
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.heart:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 10s; }
.heart:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 14s; }
.heart:nth-child(4) { left: 60%; animation-delay: 1s; animation-duration: 11s; }
.heart:nth-child(5) { left: 75%; animation-delay: 3s; animation-duration: 13s; }
.heart:nth-child(6) { left: 90%; animation-delay: 5s; animation-duration: 15s; }

/* Hero Couple Image */
.hero-couple-image {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    padding-top: 60px;
    animation: fadeInScale 1.5s ease;
}

.hero-image-frame {
    position: relative;
    width: 280px;
    height: 350px;
    margin: 0 auto;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--white);
    background: var(--white);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.05);
}

/* Corner Decorations */
.hero-image-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    z-index: 10;
}

.decoration-tl {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
    animation: decorationFloat 3s ease-in-out infinite;
}

.decoration-tr {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 10px 0 0;
    animation: decorationFloat 3s ease-in-out infinite 0.5s;
}

.decoration-bl {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 10px;
    animation: decorationFloat 3s ease-in-out infinite 1s;
}

.decoration-br {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
    animation: decorationFloat 3s ease-in-out infinite 1.5s;
}

/* Adjust hero content when image is present */
.hero {
    flex-direction: column;
    gap: 0;
    padding: 20px 20px 40px;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-bottom: 40px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 2;
}

.arrow {
    margin-top: 10px;
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

/* Invitation Section */
.invitation {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
}

.invitation-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 30px;
    border-left: 3px solid var(--primary-color);
    background: var(--light-bg);
}

/* Couple Section */
.couple {
    padding: 100px 20px;
    background: var(--light-bg);
}

.couple-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.couple-card {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.couple-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bride-card.animate-in {
    animation: slideInLeft 1s ease forwards;
}

.groom-card.animate-in {
    animation: slideInRight 1s ease forwards;
}

.couple-image {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.couple-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.couple-image:hover img {
    transform: scale(1.05);
}

.image-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.couple-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.role {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.description {
    color: var(--text-light);
    line-height: 1.8;
}

.couple-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon {
    font-size: 3rem;
    animation: pulse 2s ease infinite;
}

/* Photo Gallery */
.gallery {
    padding: 100px 20px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item-large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.02) translateZ(0);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    font-size: 3rem;
    animation: zoomIn 0.4s ease;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
}

/* Wedding Video Section */
.video-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--pink) 50%, var(--light-bg) 100%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: var(--white);
    animation: fadeInScale 1s ease;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-wrapper video {
    object-fit: cover;
}

.video-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 30px;
}

/* Event Details */
.event-details {
    padding: 100px 20px;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.event-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.event-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.event-info p {
    margin: 15px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.event-info strong {
    color: var(--secondary-color);
}

/* Countdown */
.countdown {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--light-bg) 100%);
    text-align: center;
}

.countdown h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.time-box {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    animation: fadeInScale 1s ease;
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* RSVP Section */
.rsvp {
    padding: 100px 20px;
    background: var(--white);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* QR Code Section */
.qrcode-section {
    padding: 100px 20px;
    background: var(--white);
}

.qrcode-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

.qrcode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 50px auto 0;
}

.qrcode-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInScale 1s ease;
}

.qrcode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.qrcode-header {
    margin-bottom: 30px;
}

.qrcode-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s ease infinite;
}

.qrcode-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.qrcode-name {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.qrcode-image {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 290px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.qrcode-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.qrcode-info {
    text-align: left;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.qrcode-info p {
    margin: 12px 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.qrcode-info strong {
    color: var(--secondary-color);
    display: inline-block;
    min-width: 120px;
}

.copy-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 1.2rem;
}

.qrcode-note {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 50px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffd4d4 0%, #f8e5e5 100%);
    text-align: center;
}

.thank-you {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.couple-initials {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.footer-date {
    font-size: 1.1rem;
    color: var(--secondary-color);
    letter-spacing: 4px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

@keyframes floatUp {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateX(50px) rotate(180deg);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-50px) rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes decorationFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5px, 5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-couple-image {
        padding-top: 40px;
        margin-bottom: 30px;
    }

    .hero-image-frame {
        width: 240px;
        height: 300px;
    }

    .couple-names {
        font-size: 2.5rem;
    }

    .and {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .couple-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .couple-divider {
        order: 2;
    }

    .bride-card {
        order: 1;
    }

    .groom-card {
        order: 3;
    }

    .couple-image img {
        width: 250px;
        height: 350px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        gap: 20px;
    }

    .time-box {
        padding: 20px 30px;
        min-width: 100px;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item-large {
        grid-column: span 1;
        height: 300px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }

    .video-wrapper {
        border-radius: 15px;
    }

    .qrcode-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .qrcode-card {
        padding: 30px 20px;
    }

    .qrcode-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-couple-image {
        padding-top: 30px;
        margin-bottom: 25px;
    }

    .hero-image-frame {
        width: 200px;
        height: 260px;
        border: 5px solid var(--white);
    }

    .hero-image-decoration {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }

    .save-date {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .couple-names {
        font-size: 2rem;
    }

    .and {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .wedding-date {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .divider .line {
        width: 60px;
    }

    .couple-image img {
        width: 200px;
        height: 300px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item-large {
        height: 250px;
    }

    .lightbox-counter {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .video-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .qrcode-card {
        padding: 25px 15px;
    }

    .qrcode-card h3 {
        font-size: 1.5rem;
    }

    .qrcode-name {
        font-size: 1rem;
    }

    .qrcode-image {
        max-width: 250px;
        padding: 15px;
    }

    .qrcode-info {
        font-size: 0.95rem;
        padding: 15px;
    }

    .qrcode-note {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}
