/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
    /* Color Palette - Premium Navy & Matte Gold */
    --navy: #0F1D3A;
    --navy-light: #0F1D3A;
    --navy-dark: #0A1428;
    --gold: #C89B3C;
    --gold-light: #D4AF50;
    --gold-dark: #A88834;
    --cream: #F7F6F2;
    --bright: #F8F6F1;
    --white: #FFFFFF;
    
    /* Typography */
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--cream);
    background-color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

body.locked {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: rgba(247, 246, 242, 0.75);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Opening Cover
   ======================================== */
.opening-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.opening-cover.opened {
    transform: translateY(-100%);
}

.opening-content {
    text-align: center;
    color: var(--cream);
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.opening-subtitle {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: rgba(200, 155, 60, 0.75);
}

.guest-name {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 2rem;
}

.ornament-top,
.ornament-bottom {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.ornament-bottom {
    margin: 2rem auto;
}

.btn-open {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-open:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.3);
}

.btn-open svg {
    transition: transform 0.3s ease;
}

.btn-open:hover svg {
    transform: translateX(4px);
}

/* Floating Ornaments */
.floating-ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-ornament {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.ornament-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.ornament-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.ornament-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 25%;
    animation-delay: 4s;
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
    display: none;
}

.main-content.visible {
    display: block;
}

/* ========================================
   Music Control
   ======================================== */
.music-control {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.btn-music {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 155, 60, 0.5);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
    transition: var(--transition-smooth);
    animation: pulse 2s ease-in-out infinite;
}

.btn-music:hover {
    transform: scale(1.08);
    background: var(--gold);
    color: var(--navy);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(200, 155, 60, 0.5);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 29, 58, 0.70);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--cream);
    padding: 2rem;
}

.hero-pretitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(200, 155, 60, 0.75);
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 10vw, 7rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 400;
}

.hero-title .groom-name,
.hero-title .bride-name {
    display: block;
    color: var(--cream);
}

.hero-title .ampersand {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold);
    display: block;
    margin: 0.5rem 0;
}

.hero-divider {
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.hero-date {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: rgba(247, 246, 242, 0.9);
}

.hero-guest {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(200, 155, 60, 0.75);
    margin-bottom: 1rem;
}

.hero-guest span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--cream);
}

.hero-invitation {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: rgba(247, 246, 242, 0.75);
    max-width: 28rem;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: calc(50% - 36px);
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: rgba(247, 246, 242, 0.5);
}



.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(247, 246, 242, 0.3);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: rgba(200, 155, 60, 0.7);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0;
        top: 18px;
    }
}

/* ========================================
   Countdown Section
   ======================================== */
.countdown-section {
    padding: 5rem 0;
    background: var(--navy);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--navy);
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.2);
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: var(--navy);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-top: -1rem;
}

/* ========================================
   Couple Section
   ======================================== */
.couple-section {
    padding: 5rem 0;
    background: var(--bright);
}

.couple-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.couple-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.couple-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.couple-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.couple-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.couple-profession {
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.couple-description {
    color: rgba(15, 29, 58, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

.couple-divider {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold);
    opacity: 0.5;
}

/* ========================================
   Timeline Section
   ======================================== */
.timeline-section {
    padding: 5rem 0;
    background: var(--bright);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
}

.timeline-item {
    position: relative;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 3rem;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--bright);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--gold);
}

.timeline-year {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(15, 29, 58, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: 5rem 0;
    background: var(--navy);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.3) 0%, rgba(15, 29, 58, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active,
.lightbox.flex {
    display: flex !important;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    color: var(--cream);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.lightbox-close {
    top: 1rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    color: var(--gold);
}

/* ========================================
   Event Section
   ======================================== */
.event-section {
    padding: 5rem 0;
    background: var(--navy);
}

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

.event-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.event-header {
    margin-bottom: 2rem;
    text-align: center;
}

.event-header svg {
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.event-header h3 {
    font-size: 1.8rem;
    color: var(--cream);
}

.event-details {
    margin-bottom: 2rem;
}

.event-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(247, 246, 242, 0.9);
}

.event-details svg {
    color: var(--gold);
    flex-shrink: 0;
}

.btn-location {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

/* ========================================
   RSVP Section
   ======================================== */
.rsvp-section {
    padding: 5rem 0;
    background: var(--navy);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cream);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(200, 155, 60, 0.3);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========================================
   Wishes Section
   ======================================== */
.wishes-section {
    padding: 5rem 0;
    background: var(--bright);
}

.wishes-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.wish-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--gold);
}

.wish-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wish-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.wish-info h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.wish-time {
    font-size: 0.85rem;
    color: rgba(15, 29, 58, 0.6);
}

.wish-message {
    color: rgba(15, 29, 58, 0.75);
    line-height: 1.8;
    font-style: italic;
}

/* ========================================
   Gift Section
   ======================================== */
.gift-section {
    padding: 5rem 0;
    background: var(--navy);
}

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

.gift-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.gift-card h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.qris-image {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: inline-block;
}

.qris-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.gift-card p {
    color: rgba(247, 246, 242, 0.9);
    font-size: 0.95rem;
}

.bank-details {
    text-align: left;
}

.bank-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.bank-name {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bank-account {
    font-family: monospace;
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.bank-holder {
    color: rgba(15, 29, 58, 0.75);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-copy svg {
    flex-shrink: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bright);
    padding: 4rem 0;
    color: var(--navy);
}

.footer-content {
    text-align: center;
}

.footer-prayer {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--navy);
}

.footer-thanks {
    font-size: 1rem;
    color: rgba(15, 29, 58, 0.75);
    margin-bottom: 2rem;
}

.footer-couple {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-divider {
    width: 6rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.footer-date {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 2px;
}
