* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'NanumSquare', sans-serif;
}

body {
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2E 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 메인 컨테이너 스타일 */
#main {
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

/* 섹션 공통 스타일 */
#section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-group {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 헤더 섹션 스타일 */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.8) 0%, rgba(10, 15, 30, 1) 100%);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #4F9CF9 0%, #8C5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* 기능 카드 스타일 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.feature-card {
    background: rgba(241, 241, 241, 1);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card2 {
    background: rgba(241, 241, 241, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-card2:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
    color: #3B3B3B;
}

.feature-title2 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 5px;
    color: #7697FF;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* 통계 카드 스타일 */
.stats-card {
    background: rgba(79, 156, 249, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stats-info {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 36px;
    font-weight: 700;
    color: #4F9CF9;
}

.stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* 버튼 스타일 */
.primary-button {
    background: linear-gradient(135deg, #4F9CF9 0%, #6C63FF 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 156, 249, 0.3);
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    #section {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        padding: 25px 15px;
        border-radius: 20px;
    }

    .section-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .content-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 50px;
    }

    .profile-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-socials {
        justify-content: center;
        width: 100%;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-group .primary-button {
        width: 100%;
        max-width: 300px;
    }

    .youtube-playlist {
        width: 100%;
        max-width: 400px;
        height: 320px;
        margin: 0 auto;
    }

    .kmong-service-section {
        padding: 20px;
        text-align: center;
    }

    .ae-template-highlight {
        text-align: center;
        padding: 20px;
    }

    .notice-box {
        text-align: center;
        padding: 20px;
    }

    .bible-content {
        text-align: center;
        padding: 20px;
    }

    .review-board {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .review-form {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    #reviews-container {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .profile-img-g {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .profile-name {
        font-size: 1.4rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 4px 10px;
        margin-left: 0;
        margin-top: 4px;
    }

    .profile-bio {
        font-size: 0.8rem;
        text-align: center;
    }

    .profile-slogan {
        font-size: 0.9rem;
        padding: 10px 16px;
        text-align: center;
        width: 100%;
    }

    .profile-socials {
        justify-content: center;
        margin-top: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 10px;
    }

    .feature-card2 {
        padding: 20px;
    }

    .feature-title2 {
        font-size: 18px;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .price-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .price-amount::before {
        font-size: 1.2rem;
    }

    #price-basic, #price-upgrade, #price-premium {
        font-size: 1rem;
        padding: 12px 0;
    }

    #price-notice {
        font-size: 0.85rem;
        margin: 20px 15px;
        padding: 0 10px;
    }

    .primary-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        margin: 8px 0;
    }

    .content-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        text-align: center;
    }
}

@media screen and (max-width: 360px) {
    .price-amount {
        font-size: 1.5rem;
    }

    .price-amount::before {
        font-size: 1rem;
    }
}

/* 태블릿 최적화 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #section {
        margin: 30px 20px;
        padding: 30px;
    }

    .profile-section {
        padding: 40px 30px;
    }
}

/* 작은 모바일 디바이스 */
@media screen and (max-width: 360px) {
    .profile-name {
        font-size: 1.2rem;
        flex-direction: column;
    }

    .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
        margin: 8px auto 0;
    }

    .profile-slogan {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}

/* 터치 디바이스 최적화 */
@media (hover: none) {
    .feature-card2:hover,
    .pricing-card:hover,
    .primary-button:hover {
        transform: none;
    }

    .profile-socials a {
        padding: 12px;
    }
}

/* 애니메이션 효과 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* 로고 및 브랜드 스타일 */
.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    height: 32px;
}

/* 네비게이션 스타일 */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4F9CF9;
}

/* 파트너 로고 섹션 */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* 가격 카드 스타일 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4F9CF9, #6C63FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.price-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4F9CF9, #6C63FF);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4F9CF9, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.price-amount::before {
    content: '₩';
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 4px;
}

#price-basic, #price-upgrade, #price-premium {
    color: #CDE2FF;
    font-size: 0.6rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#price-basic:hover, #price-upgrade:hover, #price-premium:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

#price-notice {
    text-align: center;
    color: #a8b2d1;
    font-size: 0.9rem;
    margin: 24px auto;
    max-width: 600px;
}

.price-notice-link {
    color: #4F9CF9;
}


@media screen and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        max-width: 400px;
        margin: 20px auto;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-amount::before {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .content-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    #price-notice {
        font-size: 0.85rem;
        padding: 0 20px;
        margin: 20px auto;
    }
}

/* 입력 필드 스타일 */
.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    width: 100%;
    margin-bottom: 20px;
}

.input-field:focus {
    outline: none;
    border-color: #4F9CF9;
}

/* 다크 모드 최적화 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0A0F1E;
    }
}

/* Background music audio tag styling */
audio#background-music {
    display: none; /* 기본은 숨김 처리 */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.beta-label {
    font-size: 12px;
    color: #1E1E1E;
    background-color: #FFD700;
    border-radius: 8px;
    padding: 2px 6px;
    margin-left: 8px;
    vertical-align: middle;
}

.visit-p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    text-align: left;
}

#main {
    height: 100vh;
    margin-top: 0px;
}

.top-section {
    margin-top: 0px;
}

.content-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#profile-section {
    width: 100%;
    margin-top: 60px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url(../images/myMacbookPro.JPG);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    border: 0px solid rgba(255, 255, 255, 0);
}

.profile-img-g {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.profile-img-g img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-img-g:hover img {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    font-size: 15px;
    padding: 6px 12px;
    background-color: #FFD700;
    color: #303030;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 12px;
    vertical-align: middle;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-bio {
    font-size: 1.0rem;
    color: #a8b2d1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.profile-slogan {
    font-size: 0.8rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 16px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.profile-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.profile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.profile-socials a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.profile-socials img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.profile-socials a:hover img {
    opacity: 1;
}

.grid-section {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;
    gap: 20px;
    box-sizing: border-box;
}

.service-container {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
}

.service-section {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: grid;
    gap: 8px;
    padding: 25px 25px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(57, 164, 250, 0.8);
    box-sizing: border-box;
}

.second-section {
    padding: 15px 15px;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
}

.second-section .second-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.second-section p {
    font-size: 12px;
}

.kmong-service-section {
    width: 100%;
    display: grid;
    align-items: center;
    gap: 8px;
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(57, 164, 250, 0.8);
    background-color: rgba(255, 255, 255, 1);
}

.kmong-sec-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 5px 10px;
    text-align: center;
    border-radius: 10px;
    background-color: #363636;
}

.service-intro-title {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

.kmong-sec-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.kmong-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.kmong-link .link-btn {
    display: inline-block;
    padding: 12px 24px;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kmong-link .link-btn:hover {
    background-color: rgba(43, 43, 43, 0.9);
    color: #ffffff;
    border-color: rgba(43, 43, 43, 0.9);
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.site-footer {
    /* Placeholder for footer styling */
}

.youtube-playlist {
    width: 100%;
    max-width: 1400px;
    height: 600px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.button-container {
    width: 680px;
    margin: 0 auto;
    box-sizing: border-box;
}

.btn-group {
    width: 100%;
    padding: 10px 0px;
    box-sizing: border-box;
}

.btn-group .link-btn {
    display: block;
    padding: 12px 24px;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    text-align: center;
    margin: 10px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-group .link-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(43, 43, 43, 0.9);
    color: #ffffff;
    border-color: rgba(43, 43, 43, 0.9);
}

.ae-template-highlight {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(22, 45, 132, 0.7);
    color: white;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ae-template-highlight img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ae-template-highlight h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.ae-template-highlight p {
    font-size: 16px;
    margin-bottom: 15px;
}

.ae-template-highlight .price {
    font-size: 20px;
    line-height: 2;
    color: #FFEB3B;
}

@media screen and (max-width: 768px) {
    #section {
        width: 100%;
        max-width: 100%;
        padding: 15px 0px;
        border-radius: 30px;
    }

    .content-container {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        border-radius: 35px;
        border: 1px solid rgba(57, 164, 250, 0);
        margin: 0;
        background-color: transparent;
    }

    .button-container {
        width: 100%;
        max-width: 100%;
        padding: 0px 30px;
        border-radius: 30px;
    }

    .btn-group {
        width: 100%;
    }

    .btn-group .link-btn {
        width: 100%;
        font-size: 14px;
        padding: 16px 0;
        margin: 8px 0;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .profile-info {
        align-items: center;
    }

    .profile-socials {
        justify-content: center;
    }

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

    .content-title {
        font-size: 24px;
    }
}

.profile-container {
    padding: 0;
    border: 0;
    width: 100%;
    max-width: 100%;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.process-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.process-list li::before {
    content: '\2022';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.review-box {
    background-color: #2F3136;
    padding: 0px;
    margin-top: 15px;
    color: #CCCCCC;
    font-size: 14px;
}

.review-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/*    /index.html   200:OK   */

@media screen and (min-width: 769px) {
    .mobile-only {
        display: none;
    }

    /* #side-popup-blessing {
        display: none;
    } */
}

.popup-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.popup-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.popup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 14px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}

.visit-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visit-container .visit-count-title {
    font-size: 16px;
    font-weight: 400;
    color: #F7F7F7;
}

.visit-container #visitor-count {
    font-size: 20px;
    font-weight: 400;
    color: #FFBB1E;
    margin-top: 0px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .popup-banner {
        width: 80%;
        height: auto;
    }

    .popup-content img {
        height: auto;
    }

    #side-popup {
        display: none;
    }

    #side-popup2 {
        display: none;
    }

    #side-popup-blessing {
        display: none;
    }
}


/* 스페셜 이벤트 배너*/
#side-popup {
    position: fixed;
    right: 20px;
    transform: none;
    bottom: 80px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    padding-bottom: 10px;
    box-shadow: 0 0 8px #FFBB1E;
    animation: slideInRight 0.6s ease-out, pulseGlow 2s infinite alternate;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    animation: slideInRight 0.6s ease-out;
  }

  #side-popup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 10px;
    display: block;
  }

  #side-popup a {
    cursor: pointer;
  }

  #close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #ffffff;
    transition: 0.2s;
    cursor: pointer;
  }

  #close-popup:hover {
    opacity: 0.8;
  }

#side-popup-blessing {
    position: fixed;
    left: 30px;
    bottom: 120px; /* Adjusted position */
    z-index: 1000;
    background: #fff;
    box-shadow: 0 0 1px #FFBB1E;
    animation: slideInFromLeft 0.6s ease-out, pulseGlow 2s infinite alternate;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

#side-popup-blessing img {
    width: 100%;
    display: block;
}

#side-popup-blessing a {
    cursor: pointer;
}

#close-popup-blessing {
    position: absolute;
    top: 3px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: #ffffff;
    transition: 0.2s;
    cursor: pointer;
}

#close-popup-blessing:hover {
    opacity: 0.8;
}

@keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
}

@keyframes slideOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}

#side-popup.slide-out {
  animation: slideOutRight 0.4s ease-out;
}

@keyframes pulseGlow {
    0% {
      box-shadow: 0 0 10px #FFBB1E;
    }
    100% {
      box-shadow: 0 0 15px #FFBB1E, 0 0 15px #FFBB1E;
    }
}

@keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
}

#side-popup2 {
    position: fixed;
    left: 20px;
    transform: none;
    bottom: 200px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    padding-bottom: 10px;
    box-shadow: 0 0 0px #FFBB1E;
    animation: slideInRight 0.6s ease-out, pulseGlow 2s infinite alternate;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    animation: slideInRight 0.6s ease-out;
  }

  #side-popup2 img {
    width: 260px;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 10px;
    display: block;
  }

  #side-popup2 a {
    cursor: pointer;
  }

  #side-popup2 #close-popup2 {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #000000;
    transition: 0.2s;
    cursor: pointer;
  }

  #side-popup2 #close-popup2:hover {
    opacity: 0.8;
  }

#score-popup {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 0px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;

    backdrop-filter: blur(3px); /* 배경 흐림 효과 */
    pointer-events: auto;
}

#score-popup img {
    max-width: 90vw;
    max-height: 80vh;
    display: grid;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

#score-popup span {
    position: absolute;
    top: 8px;
    right: 18px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}

body.popup-open {
    overflow: hidden;
}

/* Added styles for score-download-btn */
.score-download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #FFBB1E;
    color: #1E1E1E;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.score-download-btn:hover {
    background-color: #e6a900;
    color: #000000;
}

/* Added styles for popup-close-buttons */
.popup-close-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px 10px;
    text-align: center;
}

.popup-close-buttons button {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 14px;
    padding: 8px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.popup-close-buttons button:hover {
    background: rgba(0, 0, 0, 0.9);
}

#hide-today {
    font-size: 12px;
    text-align: center;
}


/* 오늘의 말씀 알림 기능 */
.bible-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2B2B2B;
    color: #ffffff;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInUp 0.6s ease-out;
}

.bible-alert button.bible-alert-close {
    background: transparent;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* Added styles for #music-btn */
#music-btn {
    display: inline-block;
    padding: 8px 15px;
    font-size: 12px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#music-btn:hover {
    border: 1px solid rgba(0, 0, 0, 0.4);
    background-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Styling for visible music player */
#music-player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#music-player button {
    padding: 4px 10px;
    background-color: #295488;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 12px;
}

#music-player button:hover {
    background-color: #2D619F;
}

#music-player input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 15px;
    outline: none;
    background: linear-gradient(to right, #2A4C76 0%, #ddd 0%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: background 0.3s;
  }
  
  #music-player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2D619F;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
  }
  
  #music-player input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2D619F;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
  }

#current-time,
#duration {
    font-size: 12px;
    color: #295488;
}

@media screen and (max-width: 768px) {
  #music-player {
    left: 50% !important;
    bottom: 20px !important;
    transform: translateX(-50%);
    width: 90%;
    font-size: 12px;
    padding: 6px 10px;
  }

  #music-player button {
    font-size: 12px;
    padding: 4px 10px;
  }

  #music-info {
    font-size: 12px;
  }

  #music-player input[type="range"] {
    height: 5px;
  }
}


#loadingBarContainer {
    position: fixed;
    top: 52px; /* 헤더 높이에 맞게 조정 */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 9999;
  }
  
  #loadingBar {
    width: 0%;
    height: 100%;
    background-color: rgba(29, 171, 185, 0.8); /* 원하는 색상으로 변경 */
    transition: width 0.3s ease;
  }


#login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 20px auto;
}

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#login-btn, #logout-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s, color 0.3s;
}

#login-btn {
    background-color: #007bff;
    color: #ffffff;
}

#login-btn:hover {
    background-color: #0056b3;
}

#logout-btn {
    background-color: #f44336;
    color: #ffffff;
}

#logout-btn:hover {
    background-color: #d32f2f;
}

#bible-section {
    width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    #bible-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .content-container {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 0;
        margin: 0;
    }
}

.portfolio-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.portfolio-section .content-container {
    max-width: 1200px;
}

@media screen and (max-width: 768px) {
    .youtube-playlist {
        width: 100%;
        height: 320px;
    }

    .portfolio-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .portfolio-section .content-container {
        max-width: 100%;
        padding: 20px;
        border-radius: 0;
    }
}

/* After Effects 템플릿 버튼 스타일 */
.ae-template-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #FFBB1E 0%, #FF8C00 100%);
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 187, 30, 0.3);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ae-template-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 187, 30, 0.4);
    background: linear-gradient(135deg, #FFC73E 0%, #FF9C20 100%);
}

.ae-template-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 187, 30, 0.2);
}

.ae-template-btn i {
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .ae-template-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 15px;
    }
}

.review-form {
    margin-bottom: 30px;
}

#review-content {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

#submit-review {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#submit-review:hover {
    background-color: #0056b3;
}

#reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    background-color: #fff;
}

.review-content {
    margin-bottom: 10px;
}

.review-meta {
    font-size: 0.9em;
    color: #666;
}

.review-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.like-button, .comment-button {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.like-button:hover, .comment-button:hover {
    background-color: #f0f0f0;
}

.comments-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* 전체 페이지 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

/* 리뷰 폼 스타일 */
.review-form {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#review-content {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-size: 16px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

/* 리뷰 컨테이너 스타일 */
#reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.review-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-content {
    font-size: 16px;
    margin-bottom: 15px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.review-actions button {
    background-color: transparent;
    color: #007bff;
    padding: 5px 10px;
    margin-left: 10px;
    font-size: 14px;
}

.review-actions button:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

/* 수정 모드 스타일 */
.edit-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.edit-actions {
    display: flex;
    gap: 10px;
}

.save-edit {
    background-color: #28a745;
}

.save-edit:hover {
    background-color: #218838;
}

.cancel-edit {
    background-color: #dc3545;
}

.cancel-edit:hover {
    background-color: #c82333;
}

/* 반응형 디자인 */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .review-form,
    #reviews-container {
        padding: 15px;
    }

    button {
        width: 100%;
        margin-bottom: 10px;
    }

    .review-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-actions {
        margin-top: 10px;
    }
}

#language-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#language-toggle:hover {
    background-color: #0056b3;
}

.language-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #2A4C76;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.language-toggle-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.language-toggle-checkbox {
    display: none;
}

.language-toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background-color: #e4e4e4;
    border-radius: 50px;
    position: relative;
    width: 120px;
    height: 40px;
    cursor: pointer;
}

.language-toggle-label::after {
    content: "";
    position: absolute;
    left: 4px;
    width: 60px;
    height: 32px;
    background-color: white;
    border-radius: 30px;
    transition: 0.3s;
}

.language-toggle-checkbox:checked + .language-toggle-label::after {
    left: calc(100% - 64px);
}

.toggle-korean,
.toggle-english {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    padding: 0 10px;
}

.language-toggle-checkbox:checked + .language-toggle-label .toggle-korean {
    color: #666;
}

.language-toggle-checkbox:not(:checked) + .language-toggle-label .toggle-english {
    color: #666;
}

.language-toggle-checkbox:checked + .language-toggle-label .toggle-english {
    color: #2A4C76;
}

.language-toggle-checkbox:not(:checked) + .language-toggle-label .toggle-korean {
    color: #2A4C76;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#price-basic {
    color: #CDE2FF;
    font-size: 0.6rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

#price-upgrade {
    color: #CDE2FF;
    font-size: 0.6rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

#price-premium {
    color: #CDE2FF;
    font-size: 0.6rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

#price-notice {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
    padding: 10px 0;
    margin-top: 10px;
}

/* 호버 효과 */
#price-basic:hover,
#price-upgrade:hover,
#price-premium:hover {
    transition: background-color 0.3s ease;
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    #price-basic,
    #price-upgrade,
    #price-premium {
        font-size: 1em;
        padding: 8px 0;
    }
    
    #price-notice {
        font-size: 0.85em;
    }
}

/* 가격 섹션 스타일 */
.pricing-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: #a8b2d1;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4F9CF9, #6C63FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.price-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4F9CF9, #6C63FF);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4F9CF9, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.price-amount::before {
    content: '₩';
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 4px;
}

#price-basic, #price-upgrade, #price-premium {
    color: #CDE2FF;
    font-size: 0.85rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#price-basic:hover, #price-upgrade:hover, #price-premium:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

#price-notice {
    text-align: center;
    color: #a8b2d1;
    font-size: 0.9rem;
    margin: 24px auto;
    max-width: 600px;
}

@media screen and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        max-width: 400px;
        margin: 20px auto;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-amount::before {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .content-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    #price-notice {
        font-size: 0.85rem;
        padding: 0 20px;
        margin: 20px auto;
    }
}

.contact-title {
    font-size: 26px;
    margin-bottom: 20px;
    padding: 0 20px;
    color: #ffffff;
}

/* 구글 애드센스 광고 스타일 */
.ad-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.ad-slot {
    min-height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* 반응형 광고 컨테이너 */
@media (max-width: 768px) {
    .ad-container {
        padding: 10px;
    }
    
    .ad-slot {
        min-height: 60px;
    }
}

