* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #012138;
    color: #e0f0ff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Голова */
header {
    background-color: #012138;
    padding: 20px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

#rosvita {
    display: flex;
    width: 200px;
}

.logo-holder {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 20px;
}

.logo-icon {
    background: linear-gradient(135deg, #1a5a8a, #0d3a5c);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-icon i {
    font-size: 32px;
    color: #5dade2;
}

.logo-text h1 {
    font-size: 28px;
    background: linear-gradient(to right, #5dade2, #aed6f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.logo-text p {
    color: #aed6f1;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Все остальное */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
}

.container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #5dade2;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 1px;
}

.business-card {
    background: linear-gradient(145deg, #023558, #012c4a);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    border: 1px solid rgba(93, 173, 226, 0.1);
}

#wame {
    text-decoration: none;
    color: white;
}

#wame:hover {
    text-decoration: underline;
}

.copy-text {
    cursor: pointer;
    color: #0066cc;
    display: inline-block;
}
        
.copy-text:hover {
    text-decoration: underline;
}

.copy-feedback {
    display: none;
    color: #4CAF50;
    font-size: 14px;
    margin-top: 5px;
    font-style: italic;
    animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(93, 173, 226, 0.3);
}

.avatar {
    background: linear-gradient(135deg, #1a5a8a, #0d3a5c);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.avatar i {
    font-size: 32px;
    color: #5dade2;
}

.name-title h3 {
    font-size: 24px;
    color: #e0f0ff;
    margin-bottom: 5px;
}

.name-title p {
    color: #aed6f1;
    font-size: 16px;
}

.card-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-row:last-child {
    border-bottom: none;
}

.row-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(93, 173, 226, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.row-icon i {
    font-size: 20px;
    color: #5dade2;
}

.row-content {
    flex: 1;
}

.row-label {
    font-size: 14px;
    color: #85c1e9;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row-value {
    font-size: 18px;
    color: #e0f0ff;
}

footer {
    background-color: rgba(0, 20, 40, 0.95);
    margin-top: auto;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #5dade2;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 12px;
    color: #aed6f1;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Адаптивку не забыть, если ставить будете на сервак, шоб на мобилах нормально работало */