/* ===== CSS Variables & Reset ===== */
:root {
    /* Pink Colors */
    --pink-primary: #FF1493;
    --pink-light: #FF69B4;
    --pink-lighter: #FFB6C1;
    --pink-gradient: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);

    /* Blue Colors */
    --blue-primary: #1E90FF;
    --blue-light: #4A90E2;
    --blue-lighter: #87CEEB;
    --blue-gradient: linear-gradient(135deg, #1E90FF 0%, #4A90E2 100%);

    /* Black & Dark Colors */
    --black-primary: #000000;
    --black-soft: #1a1a1a;
    --black-lighter: #2d2d2d;
    --black-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);

    /* Mixed Gradients */
    --mixed-gradient: linear-gradient(135deg, #FF1493 0%, #1E90FF 50%, #000000 100%);
    --pink-blue-gradient: linear-gradient(135deg, #FF1493 0%, #1E90FF 100%);
    --black-pink-gradient: linear-gradient(135deg, #000000 0%, #FF1493 100%);
    --black-blue-gradient: linear-gradient(135deg, #000000 0%, #1E90FF 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #666666;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 8px 32px rgba(255, 20, 147, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    /* Removed z-index to avoid stacking context trap */

}

.bubble {
    z-index: 200;
}

/* ===== Header ===== */
.header {
    background: var(--black-soft);
    box-shadow: 0 2px 20px rgba(255, 20, 147, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 300;
    /* Ensure header is above bubbles (200) */
    backdrop-filter: blur(10px);

    border-bottom: 2px solid var(--pink-primary);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Main Content ===== */
.main-content {
    padding: 3rem 0;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--mixed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--pink-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ===== Upload Section ===== */
.upload-section {
    max-width: 600px;
    margin: 1.5rem auto;
    /* Reduced margin */
    animation: fadeInUp 0.8s ease 0.6s both;
    position: relative;
    z-index: 300;
    /* Ensure upload section is above bubbles (200) */

}

.upload-area {
    background: rgba(0, 0, 0, 0.2);
    /* Transparent background */
    backdrop-filter: blur(5px);
    /* Glass effect */
    border: 3px dashed var(--pink-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    /* Reduced padding */
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.2);
}

.upload-area:hover {
    border-color: var(--blue-primary);
    background: var(--black-lighter);
    transform: translateY(-5px);
    box-shadow: var(--shadow-colored);
}

.upload-area.drag-over {
    border-color: var(--blue-primary);
    background: var(--black-lighter);
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(30, 144, 255, 0.4);
}

.upload-icon {
    font-size: 3rem;
    /* Reduced icon size */
    margin-bottom: 0.75rem;
    /* Reduced margin */
    animation: bounce 2s infinite;
}

.upload-area h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.upload-area p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.upload-formats {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem !important;
}

/* ===== File Preview ===== */
.file-preview {
    background: var(--black-soft);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-colored);
    animation: scaleIn 0.3s ease;
    border: 2px solid var(--pink-primary);
}

.preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preview-icon {
    font-size: 3rem;
    animation: checkmark 0.5s ease;
}

.preview-filename {
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.preview-size {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--mixed-gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--black-lighter);
    color: var(--white);
    border: 2px solid var(--pink-primary);
}

.btn-secondary:hover {
    border-color: var(--blue-primary);
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

/* ===== Disclaimer ===== */
.disclaimer {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--black-soft);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 4px solid var(--pink-primary);
    animation: fadeIn 1s ease 0.8s both;
}

.disclaimer p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== Features Section ===== */
.features {
    margin-top: 4rem;
    animation: fadeIn 1s ease 1s both;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: var(--mixed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

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

.feature-card {
    background: var(--black-soft);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    position: relative;
    z-index: 300;
    /* Ensure feature cards are above bubbles */
}

.feature-card:hover {

    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
    border-color: var(--pink-primary);
}

.feature-card:nth-child(odd) {
    border-top: 4px solid var(--pink-primary);
}

.feature-card:nth-child(even) {
    border-top: 4px solid var(--blue-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--black-soft);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease;
    border: 2px solid var(--pink-primary);
}

.modal-header {
    background: var(--pink-blue-gradient);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 24px 24px 0 0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input[type="email"] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-fast);
    background: var(--black-lighter);
    color: var(--white);
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--pink-primary);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--pink-primary);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    flex: 1;
}

/* ===== Payment Section ===== */
#paypal-button-container {
    margin-top: 1.5rem;
}

.payment-info {
    background: var(--black-lighter);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pink-primary);
}

.payment-info p {
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.payment-info strong {
    color: var(--white);
}

/* ===== Success Screen ===== */
.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: celebration 1s ease;
}

.success-content h3 {
    font-size: 2rem;
    background: var(--mixed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--pink-primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

/* ===== Footer ===== */
.footer {
    background: var(--black-soft);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 -2px 20px rgba(255, 20, 147, 0.2);
    border-top: 2px solid var(--pink-primary);
    position: relative;
    z-index: 300;
    /* Ensure footer is above bubbles */

}

.footer p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--pink-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--blue-primary);
    text-decoration: underline;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes celebration {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(-5deg);
    }

    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* ===== Confetti Animation ===== */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--pink-primary);
    position: absolute;
    animation: confetti-fall 3s linear infinite;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .upload-area {
        padding: 2rem 1rem;
    }

    .modal-content {
        width: 95%;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* ===== Soap Bubble Animation ===== */
.bubble {
    position: fixed;
    bottom: -100px;
    border-radius: 50%;
    opacity: 0.6;
    animation: bubble-float 15s infinite ease-in-out;
    pointer-events: auto;
    /* Ensure clickable */
    z-index: 200;
    /* Higher z-index to be above content */
    cursor: pointer;
    transition: transform 0.1s;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent);
}

.bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6), transparent);
}

/* Pink bubbles */
.bubble.pink {
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 20, 147, 0.4),
            rgba(255, 105, 180, 0.2));
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 20, 147, 0.4);
}

/* Blue bubbles */
.bubble.blue {
    background: radial-gradient(circle at 30% 30%,
            rgba(30, 144, 255, 0.4),
            rgba(74, 144, 226, 0.2));
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(30, 144, 255, 0.4);
}

/* Mixed color bubbles */
.bubble.mixed {
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 20, 147, 0.3),
            rgba(30, 144, 255, 0.3));
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(200, 100, 200, 0.4);
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(-50vh) translateX(100px) scale(1.1);
        opacity: 0.7;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(-50px) scale(0.8);
        opacity: 0;
    }
}

/* Different bubble sizes */
.bubble.small {
    width: 40px;
    height: 40px;
}

.bubble.medium {
    width: 60px;
    height: 60px;
}

.bubble.large {
    width: 80px;
    height: 80px;
}

.bubble.xlarge {
    width: 100px;
    height: 100px;
}

/* ===== Bubble Pop Effect ===== */
.bubble {
    cursor: pointer;
    /* Make bubbles clickable */
    transition: transform 0.1s;
}

.bubble:active {
    transform: scale(0.9);
}

.bubble-pop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: pop-splash 0.4s ease-out forwards;
    pointer-events: none;
}

@keyframes pop-splash {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.8),
            0 0 0 0 rgba(255, 20, 147, 0.6);
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        box-shadow:
            0 0 0 20px rgba(255, 255, 255, 0),
            0 0 0 40px rgba(255, 20, 147, 0);
    }
}

/* Droplets for spilling effect */
.droplet {
    position: fixed;
    /* Changed from absolute to fixed */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    animation: droplet-fall 0.6s ease-in forwards;
    z-index: 100;
    /* Ensure on top of everything */
}

.droplet.pink {
    background: var(--pink-primary);
}

.droplet.blue {
    background: var(--blue-primary);
}

@keyframes droplet-fall {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* ===== Glassmorphism Effect ===== */
.glass {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
}

/* Apply glass effect to specific elements */
.header {
    background: rgba(26, 26, 26, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

.upload-area {
    background: rgba(26, 26, 26, 0.2) !important;
    /* Much more transparent */
    backdrop-filter: blur(4px);
    /* Less blur to see bubbles better */
    -webkit-backdrop-filter: blur(4px);
    border: 3px dashed rgba(255, 20, 147, 0.5) !important;
    pointer-events: none;
    /* Allow clicks to pass through to bubbles */
}

/* Re-enable clicks for interactive elements inside upload area */
.upload-area * {
    pointer-events: auto;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02) !important;
    /* Very transparent */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--pink-primary) !important;
    box-shadow: 0 8px 32px 0 rgba(255, 20, 147, 0.2) !important;
}

.modal-content {
    background: rgba(26, 26, 26, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    background: rgba(26, 26, 26, 0.7) !important;
    backdrop-filter: blur(8px);
}

/* ===== Enhanced Feature Cards ===== */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Gradient border effect using pseudo-element */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-primary), var(--blue-primary));
    opacity: 0.7;
    transition: height 0.3s ease;
}

/* Hover effects */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 20, 147, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
    /* Full background wash on hover */
}

/* Icon styling */
.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(255, 20, 147, 0.3));
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(30, 144, 255, 0.4));
}

/* Text styling */
.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}