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

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #1a1a2e;
    min-height: 100vh;
    padding: 20px;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.side-boxes {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 20px;
    flex-shrink: 0;
    height: fit-content;
}

.purchase-box {
    background: #11111e;
    border-radius: 12px;
    padding: 20px;
    border: 3px solid #c44569;
    box-shadow: 0 8px 20px rgba(196, 69, 105, 0.4);
    margin-bottom: 10px;
}

.purchase-box h3 {
    color: #c44569;
    font-size: 1.1em;
    margin-bottom: 10px;
    text-align: center;
}

.purchase-box p {
    color: #b2bec3;
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.purchase-btn {
    display: block;
    background: linear-gradient(135deg, #c44569 0%, #a83257 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(196, 69, 105, 0.3);
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(196, 69, 105, 0.5);
}

.message-box {
    background: #11111e;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #c44569;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.box-small {
    min-height: 80px;
    padding: 12px;
}

.box-medium {
    min-height: 140px;
    padding: 15px;
}

.box-large {
    min-height: 200px;
    padding: 18px;
}

.message-label {
    color: #c44569;
    font-size: 0.75em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #b2bec3;
}

.message-content p {
    margin: 5px 0;
    font-size: 0.85em;
    line-height: 1.4;
}

.message-content p:first-child {
    font-size: 2em;
    margin-bottom: 8px;
}

.message-contact {
    color: #c44569 !important;
    font-size: 0.75em !important;
    font-weight: bold;
    margin-top: 8px !important;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #11111e;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 4px solid #c44569;
    flex: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    color: #c44569;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0px #11111e;
}

.subtitle {
    font-size: 1.2em;
    color: #b2bec3;
    font-style: italic;
}

.story-section {
    margin: 40px 0;
}

.story-card {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 3px solid #c44569;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateX(10px) scale(1.02);
}

.story-card h2 {
    color: #c44569;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.story-card p {
    color: #dfe6e9;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.belal-emoji {
    font-size: 4em;
    text-align: center;
}

.help-section {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border: 3px solid #c44569;
    color: #dfe6e9;
}

.help-section h2 {
    color: #c44569;
    font-size: 2em;
    margin-bottom: 20px;
}

.donation-box {
    background: #11111e;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #dfe6e9;
    border: 2px solid #c44569;
}

.money-counter {
    font-size: 2.5em;
    color: #c44569;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 0px #11111e;
}

.donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c44569 0%, #a83257 100%);
    color: white;
    text-decoration: none;
    border: none;
    padding: 20px 40px;
    font-size: 1.5em;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Comic Sans MS', cursive;
    box-shadow: 0 10px 25px rgba(196, 69, 105, 0.5);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.donate-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(196, 69, 105, 0.8);
}

.donate-btn:active {
    transform: scale(0.95);
}

.funny-note {
    color: #b2bec3;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 15px;
}

.food-list {
    background: #11111e;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
    border: 2px solid #c44569;
}

.food-list h3 {
    color: #c44569;
    margin-bottom: 15px;
    text-align: center;
}

.food-list ul {
    list-style: none;
    padding: 0;
}

.food-list li {
    padding: 10px;
    margin: 8px 0;
    background: #1a1a2e;
    border-radius: 10px;
    font-size: 1.1em;
    border: 2px solid #c44569;
    color: #dfe6e9;
}

.belal-quote {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
    border: 3px solid #c44569;
    font-style: italic;
}

.belal-quote p {
    font-size: 1.3em;
    color: #dfe6e9;
    margin: 10px 0;
}

.signature {
    color: #b2bec3;
    font-size: 1em !important;
    margin-top: 15px;
}

.belal-note {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    border: 3px dashed #c44569;
    font-style: italic;
}

.belal-note p {
    color: #dfe6e9;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

.belal-note strong {
    color: #c44569;
}

.belal-proof {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #c44569;
}

.belal-image {
    max-width: 100%;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #c44569;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin: 15px 0;
}

.image-caption {
    color: #b2bec3 !important;
    font-size: 0.9em !important;
    font-style: italic;
    margin-top: 10px !important;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #c44569;
    color: #b2bec3;
}

.small-text {
    font-size: 0.9em;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .side-boxes {
        display: none;
    }
    
    .page-wrapper {
        display: block;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    
    .container {
        padding: 20px;
    }
    
    .story-card {
        padding: 15px;
    }
}

