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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('daniel-bebe.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

main {
    padding: 30px;
}

.campaign-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    max-height: 500px;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.progress-section {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
}

.stat .value {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 5px;
}

.stat .label {
    color: #666;
    font-size: 0.9em;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    color: #666;
    font-weight: 500;
}

.description {
    margin-bottom: 30px;
}

.description h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.donation-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.donation-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.donation-btn {
    padding: 15px;
    border: 2px solid #4CAF50;
    background: white;
    color: #4CAF50;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.donation-btn:hover,
.donation-btn.selected {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.custom-amount {
    margin-bottom: 20px;
}

.custom-amount label {
    display: block;
    margin-bottom: 10px;
    color: #666;
    font-weight: 500;
}

.custom-amount input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1.1em;
}

.donate-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.donate-btn:hover {
    transform: scale(1.02);
}

.contributors-list {
    margin-bottom: 30px;
}

.contributors-list h2 {
    color: #333;
    margin-bottom: 20px;
}

#contributors-list {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.contributor-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contributor-name {
    font-weight: 600;
    color: #333;
}

.contributor-amount {
    color: #4CAF50;
    font-weight: bold;
}

.no-contributors {
    text-align: center;
    color: #999;
    padding: 20px;
}

footer {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
}

footer p {
    margin-bottom: 15px;
    color: #666;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    main {
        padding: 20px;
    }
}

.share-section {
    margin-top: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    text-align: center;
}

.share-section h2 {
    color: #333;
    margin-bottom: 10px;
}

.share-text {
    color: #666;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn svg {
    width: 24px;
    height: 24px;
}
