/* body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: white;
} */

nav {
    display: flex;
    justify-content: center; /* Center all nav items */
    align-items: center;
    padding: 15px 30px;
    background-color: #0a0a0a;
    gap: 50px;
}

nav .logo {
    font-size: 2em; 
    font-weight: bold;
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.invite-btn {
    background-color: #00c3ff;
    padding: 8px 15px;
    border-radius: 6px;
    color: black;
    font-weight: bold;
}


header {
    text-align: center;
    padding: 50px 20px;
}
header h1 {
    /* font-size: 2em; */
    font-weight: bold;
}
header p {
    opacity: 0.8;
}

/*.tos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 50px;
    /* background-image: url('https://www.transparenttextures.com/patterns/hexellence.png');
}
.tos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.tos-card {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 20px;
    border: 1px solid #222;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
*/

body {
font-family: Arial, sans-serif;
background-color: #0a0a0a;
color: white;
margin: 0;
padding: 0;
}

.tos-container , .privacy-container {
max-width: 1000px;
margin: auto;
padding: 20px;
}

header{
text-align: center;
/* font-size: 2.5em; */
margin-bottom: 20px;
color: white;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.8em;
font-weight: bold;
}

.logo img {
height: 40px; /* Adjust size here */
width: auto;  /* Keeps aspect ratio */
}
.tos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.tos-card {
background-color: #111;
padding: 20px;
border-radius: 10px;
border: 1px solid #222;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tos-card:hover {
transform: translateY(-5px);
box-shadow: 0 0 15px #00c3ff;
}

.tos-card h3 {
color: #a4a9aa;
margin-bottom: 10px;
}

.tos-card p {
color: #ccc;
font-size: 0.95em;
}

footer {
text-align: center;
margin-top: 40px;
padding: 20px;
color: #777;
font-size: 0.85em;
}
.tos-card:hover {
    transform: translateY(-5px);
    border-color: #00c3ff;
}
.tos-card .icon {
    font-size: 2em;
    color: #00c3ff;
}
.tos-card h3 {
    margin-top: 10px;
}
