/* General Styling */
body {
    background-color: black;
    color: white;
    font-family: "Courier New", monospace;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    padding: 40px;
}

/* Glitch Effect */
@keyframes glitch {
    0% { text-shadow: 4px 4px red; }
    25% { text-shadow: -4px -4px white; }
    50% { text-shadow: 4px -4px red; }
    75% { text-shadow: -4px 4px white; }
    100% { text-shadow: 4px 4px red; }
}

.glitch {
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    animation: glitch 0.5s infinite;
    margin-bottom: 10px;
}

img {
    width: auto;
    height: 200px;
    border-radius: 100%;
}

/* Tagline */
.tagline {
    font-size: 1.2em;
    color: red;
    margin-bottom: 20px;
}

/* Contract Box */
.contract-box {
    background: white;
    color: black;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
}

.contract-box button {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.contract-box button:hover {
    background: white;
    color: red;
    border: 1px solid red;
}

/* How to Buy Section */
.how-to-buy {
    margin-top: 20px;
    font-size: 1.2em;
}

.how-to-buy h2 {
    color: red;
}

.how-to-buy P {
    border: 2px solid red;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 1.5rem;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 30px;
}

.btn {
    background: red;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid red;
    transition: all 0.3s;
    border-radius: 10px;
}

.btn:hover {
    background: white;
    color: red;
    border: 2px solid white;
    text-shadow: 2px 2px red;
}