body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #31353d;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #282c34;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 40px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #61dafb;
    color: #20232a;
}

.user-info {
    margin-top: 10px;
    font-size: 20px;
    color: #ffffff;
    background: #333333;
    padding-left: 20px;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
}

/* EULA Section Styling */
#eula-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    box-sizing: border-box;
    
}

/* EULA Section Styling */
#privacy-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    box-sizing: border-box;
    
}

/* EULA Section Styling */
#disclaimer-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    box-sizing: border-box;
    
}

main {
    padding: 20px;
    text-align: left;
}

section {
    margin-bottom: 20px;
}

h1, h2 {
    color: #b78c33;
}

p {
    line-height: 1.6;
}

footer p {
    margin: 0;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.page-container {
    position: relative;
    min-height: 100%;
    padding-bottom: 50px; /* equal to footer height */
}

footer {
    background-color: #1b1b1b;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

main {
    padding: 20px;
    animation: fadeIn 1s;
}

.fade-in-section {
    opacity: 0;
    animation: fadeInSection 1.5s forwards;
    animation-delay: var(--animation-delay);
}

@keyframes fadeInSection {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    position: absolute;
    width: 100%;
    bottom: 0; /* sticks to bottom */
}

h1, h2 {
    color: #b78c33;
}

p {
    line-height: 1.6;
}

/* Each section fades in with a slight delay */
#terms-of-service { --animation-delay: 0s; }
#privacy-policy { --animation-delay: 0.5s; }
#disclaimer { --animation-delay: 1s; }
