:root{
    --background: #0D1117;
    --card: #161B22;
    --main-color-1: #8B5CF6;
    --main-color-2: #7C3AED;
    --secondary-color-1: #14B8A6;
    --secondary-color-2: #0F9D8C;
    --text: #F8FAFC;
    --text-passive: #94A3B8;
    --white: #ffffff;
    --warning-1: #F87171;
    --warning-2: #EF4444;
    --yellow-1: #FACC15;
    --yellow-2: #EAB308;
    --blue-1: #60A5FA;
    --blue-2: #3B82F6;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: var(--background);
    font-family: 'League Spartan', sans-serif;
}

/*Topbar*/
.topbar{
    background-color: var(--card);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}


.logo img{
    height: 32px;
    width: 32px;
}

/*Topbar Buttons*/

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-passive);
    text-decoration: none;
    font-family: 'League Spartan', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
}

.btn-login{
    text-decoration: none;
    color: var(--text);
    background-color: var(--secondary-color-1);
    padding: 8px 20px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-login:hover { 
    background-color: var(--secondary-color-2);
}

#features,
#support {
    scroll-margin-top: 90px;
}


/*Section #1*/
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
    gap: 40px
}

.hero-title{
    color: var(--main-color-1);
    font-size: 75px;
    font-family: 'League Spartan', sans-serif;
}

.hero-subtitle{
    color: var(--text-passive);
    font-size: 50px;
    font-family: 'League Spartan', sans-serif;
}

.hero-form{
    background-color: var(--card);
    padding: 32px;
    border-radius: 12px;
    max-width: 380px;
    width: 100%;
}

.input-field{
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background-color: var(--card);
    border: 1px solid var(--text-passive);
    border-radius: 6px;
    color: var(--text);
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.btn-signup{
    text-decoration: none;
    color: var(--text);
    background-color: var(--main-color-1);
    padding: 8px 20px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-signup:hover {
    background-color: var(--main-color-2);
}


/*Section #2*/
.features-card-title{
    color: var(--main-color-1);
    font-family: 'League Spartan', sans-serif;
    font-size: 32px;
}

.features-card-subtitle{
    color: var(--text-passive);
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

.feature-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 40px;
}

.feature-row.reverse{
    flex-direction: row-reverse;
}

.feature-text{
    flex: 1;
}

.feature-visual{
    flex: 1;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--main-color-1);
    border-radius: 12px;
    background: radial-gradient(circle at center, transparent 40%, rgba(139, 92, 246, 0.15) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.feature-visual img,
.feature-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*Footer*/
.footer-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: var(--card);
}

.footer-text{
    color: var(--text-passive);
    font-family: 'League Spartan', sans-serif;
    font-size: 14px;
}

.footer-links{
    display: flex;
    gap: 20px;
}

.footer-link{
    color: var(--text-passive);
    text-decoration: none;
    font-family: 'League Spartan', sans-serif;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover{
    color: var(--main-color-1);
}

.nav-account-card {
    position: relative;
    cursor: pointer;
}

.nav-account-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--card);
    border: 1px solid var(--main-color-2);
    border-radius: 8px;
    padding: 8px;
    min-width: 160px;
    z-index: 100;
}

.nav-account-dropdown.show {
    display: flex;
}

.nav-account-dropdown .dropdown-item {
    background: transparent;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 10px 12px;
    font-family: 'League Spartan', sans-serif;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.nav-account-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.nav-account-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background-color: var(--card);
    border-radius: 24px;
    cursor: pointer;
}

.nav-account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--main-color-1);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.nav-account-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-account-username {
    color: var(--text);
    font-family: 'League Spartan', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.nav-account-tag {
    color: var(--secondary-color-2);
    font-family: 'League Spartan', sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.support-section {
    padding: 80px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.support-title {
    color: var(--main-color-1);
    font-family: 'League Spartan', sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 8px;
}

.support-subtitle {
    color: var(--text-passive);
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
}

.support-form textarea.input-field {
    resize: vertical;
    min-height: 120px;
    font-family: 'League Spartan', sans-serif;
}

.support-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--main-color-1);
    color: var(--text);
    border: none;
    border-radius: 6px;
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.support-submit-btn:hover {
    background-color: var(--main-color-2);
}

.support-message {
    color: var(--secondary-color-1);
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    min-height: 20px;
    display: none;
}

.support-message.show {
    display: block;
}

.support-message.error {
    color: var(--warning-1);
}