body {
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2E 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#main {
    margin-top: 0px;
    width: 100%;
    min-height: 100vh;
    margin-bottom: 50px;
    padding: 0px 10px;
}

#header-section {
    width: 100%;
    height: 400px;
    line-height: 400px;
    text-align: center;
    padding-top: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #F27275 0%, #FF8E8E 100%);
    position: relative;
    overflow: hidden;
}

#header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.header-section-group {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    position: relative;
    z-index: 1;
}

#header-section .header-title {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#header-section .header-description {
    font-size: 22px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.9);
}

#header-section .mobile-only {
    display: none;
}

#section {
    width: 100%;
    max-width: 850px;
    padding: 20px 20px;
    margin: 0 auto;
    border-radius: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-box .intro-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #F27275 0%, #FF8E8E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-box .intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: #a8b2d1;
}

.intro-box .mobile-only {
    display: none;
}

.content-box {
    max-width: 100%;
    margin: 10px auto 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.content-box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #F27275 0%, #FF8E8E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-list {
    list-style: none;
    padding: 0;
    font-size: 18px;
    line-height: 2;
    color: #a8b2d1;
}

.content-list li {
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.content-list li:hover {
    transform: translateX(10px);
    color: #ffffff;
}

.connect-box {
    max-width: 800px;
    margin: 10px auto 0;
    padding: 45px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.connect-box .connect-title {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #F27275 0%, #FF8E8E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.connect-box .connect-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #a8b2d1;
}

.connect-button {
    display: inline-block;
    background: linear-gradient(135deg, #F27275 0%, #FF8E8E 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(242, 114, 117, 0.2);
}

.connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 114, 117, 0.3);
}

.copy-email-desc {
    font-size: 14px;
    color: #F27275;
    margin-top: 15px;
}

#copyEmailBtn.connect-button {
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.bible-section {
    width: 100%;
    max-width: 850px;
    padding: 20px 20px;
    margin: 0 auto;
    border-radius: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    background: rgba(242, 114, 117, 0.1);
    border: 1px solid rgba(242, 114, 117, 0.2);
    backdrop-filter: blur(10px);
}

.bible-box {
    border-radius: 12px;
    padding: 36px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.bible-title {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 15px;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #F27275 0%, #FF8E8E 100%);
    box-shadow: 0 4px 12px rgba(242, 114, 117, 0.2);
}

.bible-verse {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #ffffff;
    margin: 20px 0;
}

.bible-reference {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #a8b2d1;
}

@media (max-width: 768px) {
    #header-section {
        height: 300px;
        line-height: 300px;
    }

    #header-section .header-title {
        font-size: 32px;
    }

    #header-section .header-description {
        display: none;
        font-size: 16px;
    }

    #header-section .header-description.mobile-only {
        display: block;
    }

    .intro-box,
    .content-box,
    .connect-box {
        padding: 24px 16px;
    }

    .intro-box .intro-title,
    .content-box h2,
    .connect-box .connect-title {
        font-size: 22px;
    }

    .intro-box .intro-description,
    .content-box .content-list,
    .connect-box .connect-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .connect-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .bible-box {
        padding: 24px 16px;
    }

    .bible-title {
        font-size: 20px;
    }

    .bible-verse {
        font-size: 16px;
    }

    .bible-reference {
        font-size: 14px;
    }
}