body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#logo {
    width: 400px;
    margin: 30px auto;
}

@keyframes hüpfenUndDrehen {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(360deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}




#logo img {
    animation: hüpfenUndDrehen 5s ease-out;
    width: 100%;
    height: auto;
}


#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    text-align: center;
}

#pricing-column,
#donation-column {
    flex: 1 0 100%;
    margin-bottom: 20px;
}

#pricing-column h2,
#pricing-column p {
    color: #fff;
    text-align: left;
}

.donation,
.pricing {
    background-color: #444;
    padding: 20px;
    border: 2px solid #555;
    border-radius: 10px;
}

.crypto-donation h3 {
    color: #ffcc00; /* Neue Farbe für die Überschriften der Cryptowährungen */
}

.crypto-donation {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.donation h2,
.donation a,
.donation p,
.pricing h3,
.pricing td {
    color: #fff;
}

.donation a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background-color: #888;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.donation a:hover {
    background-color: #aaa;
}

#instructions a {
    color: #ff9900;
    text-decoration: none;
}

#instructions a:hover {
    color: #ffcc00;
}

#instructions {
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

#instructions h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#instructions ol {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.pricing table {
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

.pricing table td {
    padding: 10px;
    border-bottom: 1px solid #555;
}

.steam-id-button {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 16px;
    width: 100%;
}

.steam-id-button:hover {
    background-color: darkred;
}

#steam-id-form {
    position: fixed;
    bottom: 80px;
    left: 0;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: left;
}

#steam-id-form label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

#steam-id-form textarea {
    padding: 5px;
    border-radius: 5px;
    border: none;
    background-color: #555;
    color: #fff;
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    resize: vertical;
}

#submit-button {
    padding: 10px 20px;
    background-color: #888;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}

#submit-button:hover {
    background-color: #aaa;
}

#total-value {
    font-size: 2em;
    font-weight: bold;
    color: red;
}

#submit-button:disabled {
    background-color: #ccc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: not-allowed;
}

#submit-button:enabled {
    background-color: #4CAF50 !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 25px;
    cursor: pointer;
}

#choosed-boxes {
    margin-bottom: 20px;
}

#choosed-subscriptions {
    color: green;
}

#choosed-subscriptions::before {
    color: green;
    margin-right: 5px;
    display: inline-block;
}

#disclaimer {
    text-align: center;
}

#disclaimer small {
    font-size: 1.1em;
}

footer {
    color: #888;
    padding: 20px;
    font-size: 0.8em;
}

@media (min-width: 768px) {
    #pricing-column,
    #donation-column {
        flex: 1 0 45%;
    }
}

input[type="submit"]:disabled {
    background-color: grey;
    color: white;
    cursor: not-allowed;
}

input[type="submit"]:enabled {
    background-color: blue;
    color: white;
    cursor: pointer;
}

input[type="submit"]:enabled:hover {
    background-color: darkblue;
}



.banner-content {
    max-width: 960px;
    margin: 0 auto;
}

.banner-text {
    font-size: 14px;
}

.banner-buttons {
    margin-top: 10px;
}

.banner-buttons button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
}

.banner-buttons button:first-child {
    margin-right: 10px;
}



    .crypto-donation p {
        cursor: pointer;
    }
	
p:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}




button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #45a049;
}




.copy-feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: green;
  opacity: 0;  /* initially hidden */
}

/* Keyframes for the zooming out animation */
@keyframes zoomOut {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);  /* increased scale */
    opacity: 0;
  }
}







/* Neue Anpassungen */
#content h2,
#content h3 {
    color: #ffcc00;
}

#total-value {
    color: red;
}

.crypto-donation p {
    color: #fff;
}

/* Neue Anpassungen */
#content h3:first-of-type {
    color: #ff9900;
}

#total h3 {
    color: #ff9900;
}

.donation a[href="https://www.patreon.com/vbz_surf"] {
    background-color: blue;
    color: white;
}












.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    transition: width 0.2s, height 0.2s;
}

.checkbox-container input:focus ~ .checkmark {
    box-shadow: 0 0 1px #2196F3;
}
