* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a0a;
    color: #f4f4f4;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: radial-gradient(circle, #1d1f20, #000000);
    color: #0af1d7;
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid #0af1d7;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header p {
    font-size: 1.4rem;
    color: #0af1d7;
    text-shadow: 0 0 8px #0af1d7;
}

.terms {
    background: linear-gradient(145deg, #1d1f20, #000000);
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
    border-radius: 10px;
}

.terms h2 {
    color: #0af1d7;
    font-size: 2rem;
    margin-top: 30px;
    text-shadow: 0 0 5px #0af1d7;
}

.terms p, .terms ul {
    font-size: 1.1rem;
    color: #c4c4c4;
    margin-bottom: 15px;
}

.terms ul {
    list-style: square;
    padding-left: 20px;
}

.terms ul li {
    margin-bottom: 10px;
}

.footer {
    background-color: #000000;
    color: #0af1d7;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    border-top: 2px solid #0af1d7;
}

.footer p {
    font-size: 0.9rem;
    text-shadow: 0 0 5px #0af1d7;
}

a {
    color: #0af1d7;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #0aeff7;
}
.fancy-button {
    display: inline-block;
    padding: 15px 30px;
    color: #0af1d7;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #0af1d7;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
    font-family: 'Orbitron', sans-serif;
}

.fancy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0af1d7;
    transition: 0.4s ease;
    
}

.fancy-button:hover::before {
    left: 0;
}

.fancy-button:hover {
    color: #0a0a0a;
    border-color: #0af1d7;
}

.fancy-button:hover::after {
    content: '>>>';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    /* color: #0af1d7; */
    color:black;
    font-size: 1.2rem;
    transition: right 0.4s ease;
}

.fancy-button:hover::after {
    right: 10px;   
   
}


@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .terms h2 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1.1rem;
    }

    .terms p, .terms ul {
        font-size: 1rem;
    }
}
