body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #111111;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.header {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: #ffcc00;
    text-align: center;
    padding: 30px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
}

.nav {
    background: #111111;
    padding: 20px 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #ffcc00;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(255,204,0,0.1);
    transform: translateY(-2px);
}

.content {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-title {
    font-size: 32px;
    color: #ffcc00;
    margin-bottom: 10px;
    font-weight: 300;
}

.profile-photo {
    width: 220px;
    height: 280px;
    border-radius: 15px;
    object-fit: cover;
    margin: 20px auto;
    border: 4px solid #ffcc00;
    box-shadow: 0 8px 25px rgba(255,204,0,0.3);
}

.profile-name {
    font-size: 24px;
    color: #ffcc00;
    margin: 10px 0;
    font-weight: 500;
}

.profile-group {
    font-size: 18px;
    color: #aaaaaa;
    margin: 5px 0;
}

.about-me {
    background: #d3d3d3;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #ffcc00;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.skill-tag {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: #ffcc00;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255,204,0,0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,204,0,0.4);
}

.experience-section {
    margin-top: 50px;
}

.section-title {
    font-size: 28px;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

.experience-card {
    background: #111111;
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-left: 4px solid #ffcc00;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateX(5px);
}

.experience-title {
    font-size: 20px;
    color: #ffcc00;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.experience-desc {
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0;
}

.news-container {
    display: grid;
    gap: 25px;
}

.news-card {
    background: #111111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-left: 4px solid #ffcc00;
}

.news-title {
    font-size: 24px;
    color: #ffcc00;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.news-meta {
    color: #777777;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.news-text {
    color: #dddddd;
    line-height: 1.7;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: #111111;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 200px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #222222;
}

.product-name {
    font-size: 18px;
    color: #ffcc00;
    margin: 10px 0;
    font-weight: 600;
}

.product-price {
    font-size: 20px;
    color: #e67e22;
    font-weight: 700;
    margin: 5px 0;
}

.contacts-container {
    text-align: center;
}

.contact-info {
    background: #d3d3d3; /* Светло-серый фон */
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    font-size: 18px;
    color: #333333;
}

.contact-button {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: #ffcc00;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,204,0,0.4);
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: #ffcc00;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}
