/* Donation Page - Matching Site Style */
.donation-page {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.donation-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.donation-main-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
}

.donation-subtitle {
    font-size: 18px;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Container */
.donation-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Category Header */
.package-category {
    margin-bottom: 30px;
}

.category-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-header h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.category-header h2 i {
    font-size: 28px;
}

/* Tier Cards Grid */
.donation-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Force 4 columns for Supporter Pakker */
.package-category:first-child .donation-tiers {
    grid-template-columns: repeat(4, 1fr);
}

.tier-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-8px);
    background: rgba(40, 40, 40, 0.95);
}

/* Tier Color Accents */
.tier-card:nth-child(1):hover {
    border-color: #cd7f32;
}

.tier-card:nth-child(2):hover {
    border-color: #c0c0c0;
}

.tier-card:nth-child(3):hover {
    border-color: #ffd700;
}

.tier-card.featured {
    border-color: rgba(192, 192, 192, 0.4);
}

.tier-card.diamond {
    border-color: rgba(0, 212, 255, 0.4);
}

.tier-card.diamond:hover {
    border-color: #00d4ff;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #9ca3af, #c0c0c0);
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tier Icon */
.tier-icon {
    font-size: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-icon {
    transform: scale(1.1);
}

.tier-card:nth-child(1) .tier-icon { 
    color: #cd7f32;
}
.tier-card:nth-child(2) .tier-icon { 
    color: #e0e0e0;
}
.tier-card:nth-child(3) .tier-icon { 
    color: #ffd700;
}
.tier-card.diamond .tier-icon { 
    color: #00d4ff;
}

/* Tier Title and Price */
.tier-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tier-price {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.tier-card:nth-child(1) .tier-price { color: #cd7f32; }
.tier-card:nth-child(2) .tier-price { color: #e0e0e0; }
.tier-card:nth-child(3) .tier-price { color: #ffd700; }
.tier-card.diamond .tier-price { color: #00d4ff; }

/* Benefits List */
.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1;
}

.tier-benefits li {
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.tier-benefits i {
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.tier-card:nth-child(1) .tier-benefits i { color: #cd7f32; }
.tier-card:nth-child(2) .tier-benefits i { color: #e0e0e0; }
.tier-card:nth-child(3) .tier-benefits i { color: #ffd700; }
.tier-card.diamond .tier-benefits i { color: #00d4ff; }

/* Donate Buttons */
.donate-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    margin-top: auto;
}

.donate-btn:hover {
    transform: translateY(-2px);
}

.donate-btn:active {
    transform: translateY(0);
}

.donate-btn.bronze {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #fff;
}

.donate-btn.bronze:hover {
    background: linear-gradient(135deg, #e89944, #cd7f32);
}

.donate-btn.silver {
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
    color: #000;
}

.donate-btn.silver:hover {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.donate-btn.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.donate-btn.gold:hover {
    background: linear-gradient(135deg, #ffe44e, #ffd700);
}

.donate-btn.diamond {
    background: linear-gradient(135deg, #b9f2ff, #00d4ff);
    color: #000;
    font-weight: 900;
}

.donate-btn.diamond:hover {
    background: linear-gradient(135deg, #d0f8ff, #b9f2ff);
}

/* Donation Info Section */
.donation-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.info-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 35px 30px;
}

.info-card h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h2 i {
    font-size: 22px;
}

.info-card p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.warning-text {
    color: #ffd700 !important;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
}

.warning-text i {
    margin-right: 5px;
}

/* Steps Box */
.steps-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: #ddd;
    line-height: 1.6;
}

.step strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

/* Discord Button */
.discord-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #6b75ff, #5865f2);
    transform: translateY(-2px);
}

.discord-btn i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-page {
        padding: 30px 15px;
    }

    .donation-main-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .donation-subtitle {
        font-size: 16px;
    }

    .category-header h2 {
        font-size: 26px;
    }

    .donation-tiers,
    .package-category:first-child .donation-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tier-card {
        padding: 30px 25px;
    }

    .tier-card h3 {
        font-size: 22px;
    }

    .tier-price {
        font-size: 32px;
    }

    .tier-icon {
        font-size: 45px;
    }

    .donate-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .donation-info-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .info-card h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .donation-main-title {
        font-size: 26px;
    }

    .tier-card {
        padding: 25px 20px;
    }

    .tier-price {
        font-size: 28px;
    }

    .tier-benefits li {
        font-size: 14px;
    }
}
