html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: black;
    height: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
}

.header {
    position: relative;
    z-index: 5;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 40px;
    backdrop-filter: blur(4px);
    animation: fadeIn 2s forwards;
}

.header h1 {
    font-size: 72px;
    letter-spacing: 4px;
    margin: 0;
    background: linear-gradient(90deg, #7ad7ff, #ffffff, #ffcbf8);
    -webkit-background-clip: text;
    color: transparent;
    animation: pulseText 3s infinite alternate;
}

.subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
    animation: fadeInText 2s forwards 0.4s;
}

.content {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    text-align: center;
    animation: fadeIn 2s forwards;
}

.about-block {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    backdrop-filter: blur(3px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    animation: fadeInText 2s forwards 0.5s;
}

.gallery-title {
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    animation: fadeInText 2s forwards 1s;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    width: 300px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255,255,255,0.15);
    transition: transform 0.35s, box-shadow 0.35s;
}

.card:hover {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(255,255,255,0.35);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card span {
    display: block;
    padding: 12px 0;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
}

.btns {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btns a {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    color: white;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.btns a:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}



@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseText {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(255,255,255,0.3); }
    50% { transform: scale(1.02); text-shadow: 0 0 15px rgba(255,255,255,0.6); }
    100% { transform: scale(1); text-shadow: 0 0 5px rgba(255,255,255,0.3); }
}
