body {
    background-color: #000;
    color: #fff;
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 60px;
    overflow-x: hidden;
}

/* Starry Night Background */
@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}

#stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
    z-index: -3;
}

#stars2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
    z-index: -2;
    opacity: 0.5;
}

#stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    z-index: -1;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 80px;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.server-icon-placeholder {
    width: 80px;
    height: 80px;
    background-image: url('tiger.jpg');
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

header h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 3em;
    color: #fff;
    text-shadow: 0 0 5px #3f1dad, 0 0 10px #3f1dad;
    margin: 0;
    transition: all 0.3s ease;
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

header h1:hover {
    transform: scale(1.05);
}

header .subtitle {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 20px;
}

header .description {
    font-size: 1.5em;
    color: #ffffff;
    line-height: 1.7;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.feature-box {
    background-color: #111;
    border: 1px solid #3f1dad;
    border-radius: 5px;
    padding: 15px;
    padding-top: 50px;
    text-align: center;
    box-shadow: 0 0 10px rgba(63, 29, 173, 0.5);
    transition: none;
    min-height: auto;
    position: relative;
}

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #3f1dad;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
}

.feature-box:hover {
    transform: none;
    box-shadow: none;
    background-color: #222;
}

.feature-box h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1em;
    color: #3f1dad;
    margin-bottom: 8px;
}

.feature-box p {
    color: #fff;
    font-size: 1.2em;
    line-height: 1.5;
    flex-grow: 1;
}

footer {
    text-align: center;
}

.patreon-button {
    display: inline-block;
    background-color: #3f1dad;
    color: #fff;
    padding: 20px 60px;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(63, 29, 173, 0.9);
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
}

.price-details {
    display: block;
    font-size: 0.6em;
    font-weight: normal;
    margin-top: 5px;
}

.footer-text {
    margin-top: 15px;
    font-size: 0.9em;
    color: #aaa;
}

.footer-link {
    color: #ff8c00;
    text-decoration: underline;
}

.patreon-button:hover {
    background-color: #fff;
    color: #3f1dad;
    border-color: #3f1dad;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }

    header h1 {
        font-size: 2.2em;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px 20px;
    }

    header .description {
        padding: 0 20px;
        font-size: 1.3em;
    }

    .title-container {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .server-icon-placeholder {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    header .description {
        padding: 0 10px;
        font-size: 1.2em;
    }

    .server-icon-placeholder {
        width: 60px;
        height: 60px;
    }
}
