body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}

/* Стили для навигации */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

nav ul li a.active {
    background: rgba(255, 255, 255, 0.2);
}

.btn-login {
    background: var(--fl-orange);
    padding: 8px 20px;
}

.btn-login:hover {
    background: #e68a17;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
:root {
    --fl-orange: #F7981D;
    --fl-dark: #2A2A2A;
    --fl-light: #F5F5F5;
    --fl-gray: #444444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--fl-dark);
    background-color: var(--fl-light);
}


header {
    background: var(--fl-dark);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo h1 {
    color: var(--fl-orange);
    margin: 0;
    font-size: 1.8rem;
}

.logo p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--fl-orange);
}

.btn-login {
    background: var(--fl-orange);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-login:hover {
    background: #e68a17;
    color: white;
}


main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/studio-bg.jpg');
    background-size: cover;
    color: white;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: var(--fl-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e68a17;
}


.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--fl-orange);
    margin-top: 0;
}


.demo {
    background: var(--fl-gray);
    padding: 30px;
    border-radius: 8px;
    color: white;
}

.demo-editor {
    background: #1E1E1E;
    height: 300px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}


footer {
    background: var(--fl-dark);
    color: white;
    text-align: center;
    padding: 1.5rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.social-links a {
    color: var(--fl-orange);
    text-decoration: none;
    margin: 0 10px;
}


.about {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about h3 {
    color: var(--fl-orange);
    margin-top: 25px;
}

.team {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Стили для профиля пользователя */
.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
  }
  
  .user-profile span {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .btn-logout {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
  }