#bgVideoWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}
#bgVideoWrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(5%);
}
#bgOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

body {
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 5%;
    background: #000;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}
.logo {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a, .nav-links button {
    color: #eee;
    text-decoration: none;
    font-size: 0.85rem;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.nav-links a:hover, .nav-links button:hover {
    color: #aaa;
}
.nav-instagram {
    color: #d62976 !important;
    font-weight: 600;
}
.nav-instagram:hover {
    color: #ff7aac !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: transparent;
}
.hero h1 {
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: #fff;
}
.hero p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
}
.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.btn:hover {
    background: #aaa;
}
section {
    padding: 90px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: transparent;
}
h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease, margin 0.6s ease, padding 0.6s ease;
    max-height: 400px;
    opacity: 1;
    margin-bottom: 0;
    padding-bottom: 0;
}
.gallery-item.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    pointer-events: none;
}
.gallery img, .gallery video {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.2s;
    cursor: pointer;
    display: block;
    background: #111;
}
.gallery img:hover, .gallery video:hover {
    filter: grayscale(0%);
}
.video-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.video-item {
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 6px;
    transition: max-height 0.6s ease, opacity 0.6s ease, margin 0.6s ease, padding 0.6s ease;
    max-height: 400px;
    opacity: 1;
    margin-bottom: 0;
    padding-bottom: 0;
}
.video-item.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    pointer-events: none;
}
.video-item video,
.video-item iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #111;
}
.video-item video {
    filter: grayscale(100%);
    transition: 0.2s;
    cursor: pointer;
}
.video-item video:hover {
    filter: grayscale(0%);
}
.video-item .video-thumb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.7rem;
    color: #444;
    border-top: 1px solid #111;
    background: transparent;
}
.burger {
    display: none !important;
}

@media (max-width: 768px) {
    #bgVideoWrapper video {
        transform: translateY(2%);
    }
    header {
        flex-direction: column;
        align-items: center;
        padding: 16px 5%;
    }
    .logo-wrapper {
        margin-bottom: 8px;
    }
    .logo-img {
        height: 30px;
    }
    .logo {
        font-size: 1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.5rem;
        margin-top: 10px;
        width: 100%;
        padding: 0;
        position: static;
        background: transparent;
        backdrop-filter: none;
    }
    .nav-links a, .nav-links button {
        font-size: 0.75rem;
    }
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    .hero p {
        font-size: 0.7rem;
    }
    .btn {
        padding: 10px 24px;
        font-size: 0.7rem;
    }
    section {
        padding: 60px 0;
    }
    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-item {
        max-height: 500px;
    }
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .video-item {
        max-height: 350px;
    }
    .container {
        padding: 0 4%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 14px;
    }
    .file-list {
        max-height: 120px;
    }
    .file-item {
        font-size: 0.7rem;
    }
    .drop-zone-wrapper .drop-zone {
        padding: 0;
        border: none;
        background: transparent;
        cursor: default;
    }
    .drop-zone-wrapper .drop-zone p,
    .drop-zone-wrapper .drop-zone .file-hint {
        display: none;
    }
    .drop-zone-wrapper .drop-zone input[type="file"] {
        position: relative;
        opacity: 1;
        height: auto;
        width: 100%;
        padding: 10px;
        border: 1px solid #444;
        border-radius: 4px;
        background: #111;
        color: #ccc;
        font-size: 0.8rem;
        cursor: pointer;
    }
    .drop-zone-wrapper .drop-zone.dragover {
        border-color: #444;
        background: transparent;
    }
    .form-group input[type="checkbox"] {
        width: 22px;
        height: 22px;
        accent-color: #fff;
        background-color: #111;
        border: 1px solid #555;
        border-radius: 3px;
        -webkit-appearance: none;
        appearance: none;
        position: relative;
        flex-shrink: 0;
    }
    .form-group input[type="checkbox"]:checked {
        background-color: #fff;
    }
    .form-group input[type="checkbox"]:checked::after {
        content: "✓";
        color: #000;
        font-size: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: bold;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 1px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: #111;
    border: 1px solid #2a2a2a;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #666;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #fff;
    cursor: pointer;
}
.form-group input[type="checkbox"] + span {
    font-size: 0.9rem;
    color: #eee;
    cursor: pointer;
}
.form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #0f0;
}
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-section h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #ccc;
    text-transform: uppercase;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.form-row .form-group {
    flex: 1;
    min-width: 200px;
}
.drop-zone-wrapper .drop-zone {
    border: 2px dashed #444;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    background: #111;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    position: relative;
}
.drop-zone-wrapper .drop-zone.dragover {
    border-color: #aaa;
    background: #1a1a1a;
}
.drop-zone-wrapper .drop-zone p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #aaa;
    pointer-events: none;
}
.drop-zone-wrapper .drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.drop-zone-wrapper .drop-zone .file-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #666;
    pointer-events: none;
}
.file-error {
    color: #f00;
    font-size: 0.8rem;
    margin-top: 8px;
    text-transform: none;
}
.date-hint {
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
.file-list {
    margin-top: 10px;
    padding: 10px;
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
    display: none;
    max-height: 150px;
    overflow-y: auto;
}
.file-list.show {
    display: block;
}
.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.8rem;
    color: #ccc;
    text-transform: none;
    border-bottom: 1px solid #222;
}
.file-item:last-child {
    border-bottom: none;
}
.file-item .file-name {
    font-weight: 400;
    letter-spacing: 0;
    word-break: break-all;
}
.file-item .file-size {
    color: #666;
    font-size: 0.7rem;
    white-space: nowrap;
    margin-left: 10px;
}
.file-item .file-remove {
    color: #f00;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 12px;
    font-weight: bold;
    background: none;
    border: none;
    padding: 0 4px;
}
.file-item .file-remove:hover {
    color: #ff4d4d;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}
#modal-media {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#modal-media img, #modal-media video {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}
#loadMoreContainer {
    text-align: center;
    margin-top: 30px;
}
#loadMoreBtn {
    cursor: pointer;
}
#loadMoreVideoContainer {
    text-align: center;
    margin-top: 30px;
}
#loadMoreVideoBtn {
    cursor: pointer;
}
.text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
    text-transform: none;
}
.text-content {
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.text-short {
    max-height: 130px;
}
.text-full {
    max-height: none;
}
.read-more-btn {
    display: none;
    margin-top: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding: 0;
}
.read-more-btn:hover {
    color: #fff;
}
.text-content p {
    margin-bottom: 1rem;
}
.text-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.text-content ul li {
    text-transform: none;
    margin-bottom: 0.3rem;
}
.text-content strong {
    color: #ddd;
}