body {
    font-family: Arial, sans-serif;
    background-color: #FFF8E0;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: white;
    padding: 18px;
    text-align: center;
}

main {
    margin: 15px;
    flex: 1; 
}

footer {
    background-color: #333;
    color: white;
    padding: 5px;
    text-align: center;
}

h1 {
    color: #F16400;
}
/* Style rules for navigation area */
nav {
    background-color: #2a1f14;
}

nav ul {
    list-style-type: none;
    text-align: center;
    padding: 0; 
    margin: 0; 
}

nav li {
    display: inline-block;
    font-size: 1.5em;
    font-family: Geneva, Arial, sans-serif;
    font-weight: bold;
    border-top: 1px solid #ff8c00;
}

nav li a {
    display: inline-block;
    color: #f6eee4;
    padding: 0.5em 2em;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s; 
}

/* Hover effect for nav bar */
nav li a:hover {
    background-color: #444; 
    transform: scale(1.1); 
}

/* Add to your existing CSS */
.socials {
    max-width: 400px;
    margin: 20px auto;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin: 10px auto;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .social:hover {
    transform: scale(1.03);
  }
  

/* Icon size and visibility */
.social img {
    width: 24px;
    height: 24px;
    filter: invert(1); /* Makes SVG icons white */
}

/* Platform-specific styles */
.social.x         { background: #000000; }
.social.instagram { background: #E1306C; }
.social.youtube   { background: #FF0000; }
.social.telegram  { background: #0088cc; }
.social.steam     { background: #171A21; }
.social.vrchat    { background: #ffffff; color: #000; }
.social.barq      { background: #F16400; }

.social.vrchat img {
    filter: none; /* Keep VRChat icon black */
}

.social.barq img {
    filter: none; /* Keep barq! icon black */
}

