* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background: #111;
    color: white;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

header {
    border-bottom: 1px solid #2a2a2a;
    padding: 20px 0;
    background: #181818;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.donation-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.donation-text {
    color: #22c55e;
    font-weight: bold;
}

.copy-btn {
    background: #22c55e;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.copy-btn:hover {
    opacity: 0.8;
}

.copy-message {
    color: #22c55e;
    font-size: 14px;
    display: none;
}

.title-site {
    padding: 60px 0 30px;
}

.title-site h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
}

.title-site p {
    max-width: 850px;
    margin: 0 auto 20px;
    text-align: center;
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 18px;
}

.content {
    padding-bottom: 60px;
}

.content .container {
    max-width: 900px;
}

.content h2 {
    font-size: 30px;
    color: #22c55e;
    border-left: 4px solid #22c55e;
    padding-left: 15px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.content p {
    color: #d0d0d0;
    line-height: 1.9;
    font-size: 17px;
}

.warning-text {
    background: #1a1a1a;
    border: 1px solid #2f2f2f;
    border-left: 4px solid #22c55e;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 35px;
    color: #b0b0b0;
}

.product-item {
    background: #1a1a1a;
    border: 1px solid #2f2f2f;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.product-item:hover {
    transform: translateY(-3px);
    border-color: #22c55e;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price {
    color: #22c55e;
    font-size: 24px;
    font-weight: bold;
}

.store-link {
    background: #22c55e;
    color: black;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.store-link:hover {
    opacity: 0.8;
}

footer {
    border-top: 1px solid #2a2a2a;
    text-align: center;
    padding: 25px 0;
    color: #777;
    background: #181818;
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

