body {
    background-color: #0A0A0A;
    margin: 0;
    padding: 1rem;
    line-height: 1.6;
}

#text_logo {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-top: 10px;
    font-size: 1rem;
}

#heading {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    padding-top: 1.25rem;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.2;
    margin-bottom: 1rem;
}

#sub_heading {
    font-family: "Manrope", sans-serif;
    color: white;
    font-size: 1.5rem;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 2rem;
}

section {
    color: white;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info_heading {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.information {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info_heading_2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

.information_2 {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
}

#first_list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1rem;
}

#first_list li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

hr {
    width: 90%;
    margin: 2rem auto;
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

#copyright {
    color: rgba(255, 255, 255, 0.59);
    font-family: "Manrope", sans-serif;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.875rem;
}

.copyright_effect:hover {
    color: white;
}

#security_list {
    padding-left: 1rem;
}

#security_list li {
    margin-bottom: 0.5rem;
}

#security_link, #llm_detail {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.49);
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

#llm_detail:hover, #security_link:hover {
    color: white;
}

#composers_nav {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.59);
}

#composers_nav:hover {
    text-decoration: none;
    color: white;
}

#get_started_btn {
    width: 100%;
    max-width: 200px;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto;
    display: block;
    min-height: 44px;
}

#get_started_btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

#get_started_btn:active {
    transform: translateY(0);
}

#get_st_link {
    text-decoration: none;
    color: black;
}

/* CTA container for multiple buttons */
#cta_container {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 2rem auto;
    max-width: 760px;
}

.primary_btn, .secondary_btn {
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    min-height: 44px;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.primary_btn {
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
}

.secondary_btn {
    background: transparent;
    transition: background-color 0.4s ease;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.12);
}

.secondary_btn a, .primary_btn a {
    color: inherit;
    text-decoration: none;
}

.secondary_btn:hover {
    background: white;
    color: black;
    border: 1px solid black;
}

/* New Beta section */
#beta_section {
    color: white;
    font-family: "Manrope", sans-serif;
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

#beta_section .info_heading {
    margin-top: 0.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
body {
    padding: 0.5rem;
}

#heading {
    font-size: 2rem;
    padding-top: 1rem;
}

#sub_heading {
    font-size: 1.25rem;
}

.info_heading, .info_heading_2 {
    font-size: 1.5rem;
}

.information, .information_2 {
    font-size: 1rem;
}

#first_list li {
    font-size: 1rem;
}

section {
    padding: 0 0.5rem;
}

#nav_bar {
    right: 10px;
    left: 10px;
    width: auto;
}
}

@media (max-width: 480px) {
#heading {
    font-size: 1.75rem;
}

#sub_heading {
    font-size: 1.125rem;
}

.info_heading, .info_heading_2 {
    font-size: 1.25rem;
}

.information, .information_2 {
    font-size: 0.9375rem;
}

#first_list li {
    font-size: 0.9375rem;
}

#text_logo {
    font-size: 0.875rem;
}

#get_started_btn {
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
}

#cta_container {
    flex-direction: column;
    gap: 0.5rem;
}
}