:root {
    --bg-color: #0d0b1a;
    --logo-light: #a499cf;
    --logo-main: #7e74b1;
    --logo-dark: #64589d;
    --text-white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background: var(--bg-color); 
    color: var(--text-white); 
    line-height: 1.6; 
}

/* Навігація */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 8%; 
    background: rgba(13, 11, 26, 0.95); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(164, 153, 207, 0.1); 
}
.logo { font-size: 22px; font-weight: bold; text-decoration: none; color: white; }
.logo span { color: var(--logo-light); }
nav ul { display: flex; list-style: none; }
nav ul li a { color: white; text-decoration: none; margin-left: 25px; font-size: 14px; transition: 0.3s; }
nav ul li a:hover { color: var(--logo-light); }

/* Секції */
section { padding: 80px 8%; min-height: 80vh; }
.page-title { text-align: center; margin-bottom: 40px; font-size: 32px; color: var(--logo-light); text-transform: uppercase; }

/* Галерея */
.photo-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    margin: 40px 0; 
}
.photo-item { 
    aspect-ratio: 16/9; 
    background: var(--card-bg); 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid rgba(164, 153, 207, 0.1); 
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; }

/* Картки */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.card { 
    background: var(--card-bg); 
    padding: 30px; 
    border-radius: 15px; 
    border: 1px solid rgba(164, 153, 207, 0.1); 
    transition: 0.3s;
}
.card:hover { border-color: var(--logo-light); transform: translateY(-5px); }

/* Кнопки та Соцмережі */
.social-links { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.soc-btn { 
    padding: 12px 25px; 
    border-radius: 8px; 
    text-decoration: none; 
    color: white; 
    background: var(--logo-main); 
    font-weight: bold; 
    transition: 0.3s; 
}
.soc-btn:hover { background: var(--logo-dark); box-shadow: 0 0 15px var(--logo-main); }
.inst { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Оновлений Футер */
footer {
    text-align: center;
    padding: 60px 8% 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(164, 153, 207, 0.05);
}

.footer-socials {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials a {
    color: var(--logo-light);
    font-size: 24px;
    transition: 0.4s;
    opacity: 0.6;
}

.footer-socials a:hover {
    color: var(--text-white);
    opacity: 1;
    transform: translateY(-5px);
    text-shadow: 0 0 10px var(--logo-main);
}

footer p {
    font-size: 13px;
    opacity: 0.4;
    letter-spacing: 1px;
}

.secret-dot {
    text-decoration: none;
    color: inherit;
    cursor: default;
    font-size: 8px;
}