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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d0015 0%, #1a0a2e 25%, #2d1b4e 50%, #1a0a2e 75%, #0d0015 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
}

h1, h2, h3, .title-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

.glass-card {
    background: rgba(233, 30, 99, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    padding: 14px 28px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.text-gradient {
    background: linear-gradient(135deg, #FF4081, #E91E63, #AD1457);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    color: #FF4081;
}

.prayer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.1rem;
}

.amen {
    color: #FF4081;
    font-weight: 700;
    font-size: 1.25rem;
}

.instruction {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: rgba(233, 30, 99, 0.2);
    color: #FF4081;
}

.image-float {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    max-width: 160px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .image-float {
        float: none;
        margin: 0 auto 1.5rem;
        display: block;
        max-width: 120px;
    }
}

@media print {
    body {
        background: white !important;
        color: black !important;
    }
    .no-print {
        display: none !important;
    }
    .glass-card {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    .prayer-text {
        color: black !important;
    }
    .section-title, .amen, .text-gradient {
        color: #E91E63 !important;
        -webkit-text-fill-color: #E91E63 !important;
    }
    #tsparticles {
        display: none !important;
    }
}
