* {
	
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('/resources/_Img/fund.png');
    background-size: cover;
    background-position: center;
    animation: heroBackground 1.4s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 750px;
    text-align: left;
}

.hero-section .hero-container {
    max-width: none;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-text,
.label-number {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.label-line {
    height: 1px;
    width: 3rem;
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-title {
	font-family: 'SCDream3', sans-serif; 
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-description {
	font-family: 'SCDream3', sans-serif; 
	font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-description p {
    margin-bottom: 0.75rem;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    background-color: transparent;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.35);
    animation: pulseGlow 1.8s ease-in-out infinite;
}

.donate-btn:hover {
    background-color: white;
    color: #111;
}

.donate-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* Campaign Section */
.campaign-section {
    padding: 4rem 0;
    border-top: 4px solid #2C4A7F;
}

.campaign-header {
    position: relative;
    text-align: right;
    margin-bottom: 3rem;
}

.campaign-header::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(125deg, rgb(111 201 242), rgb(44 74 127));
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.35);
}

.campaign-title {
	font-family: 'SCDream6', sans-serif; 
    font-size: 55px;
    font-weight: 700;
    color: #2C4A7F;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease-out forwards;
    animation-delay: 0.6s;
    position: relative;
    display: inline-block;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.campaign-item {
    border-bottom: none;
    padding: 2.5rem;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.6)) top / 100% 6px no-repeat,
         right 12px bottom 10px / 46% auto no-repeat,
        #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    min-height: 160px;
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}


.campaign-item::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.25);
    background: #ffffff url('/resources/_Img/80th_logo.png') center / 26px auto no-repeat;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
    z-index: 1;
    pointer-events: none;
}

.campaign-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.6));
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 2;
    pointer-events: none;
}

.campaign-item > * {
    position: relative;
    z-index: 1;
}

.item-title {
	font-family: 'SCDream4', sans-serif; 
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.95), rgba(14, 165, 233, 0.8));
}

.item-text {
    color: #4a4a4a;
    line-height: 1.8;
}

.item-text p {
    margin-bottom: 0.75rem;
}

.campaign-item .c-list01 {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.campaign-item .c-list01 li {
	font-family: 'SCDream3', sans-serif; 
	font-size: 17px;
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.7rem;
    color: #374151;
    line-height: 1.85;
    word-break: keep-all;
}

.campaign-item .c-list01 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
}

/* Fund Website Box */
.fund-website-box {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.fund-website-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/resources/_Img/80th_logo.png') right 18px bottom 10px / 44% auto no-repeat;
    opacity: 0.11;
    filter: grayscale(0.3);
    pointer-events: none;
}

.fund-website-box::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.28);
    background: #ffffff url('/resources/_Img/80th_logo.png') center / 28px auto no-repeat;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
    pointer-events: none;
}

.fund-website-box > * {
    position: relative;
    z-index: 1;
}

.box-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
    position: relative;
    display: inline-block;
}

.box-title::after {
    content: '';
    display: block;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}

.fund-link {
    color: #2C4A7F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: text-decoration 0.2s;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.fund-link:hover {
    text-decoration: none;
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.link-arrow {
    width: 16px;
    height: 16px;
}

@keyframes heroBackground {
    from {
        background-position: center bottom;
    }
    to {
        background-position: center center;
    }
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 25px rgba(15, 23, 42, 0.35);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 20px 35px rgba(14, 165, 233, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 25px rgba(15, 23, 42, 0.35);
    }
}

/* More Info Button */
.more-info-container {
    text-align: center;
}

.more-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background-color: #f3f4f6;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    transition: background-color 0.2s;
}

.more-info-btn:hover {
    background-color: #e5e7eb;
}

.down-arrow {
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-section {
        height: 600px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .campaign-title {
        font-size: 2.5rem;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .more-info-btn {
        width: 100%;
        padding: 1.25rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .campaign-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}
