:root {
    --bg-color: #0a0a0c;
    --card-bg: #16161a;
    --accent: #bc13fe;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

* { 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body { 
    background-color: var(--bg-color); 
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    padding: 0 5%; 
}

header { 
    text-align: center; 
    padding: 40px 0 50px; 
}

header h1 { 
    font-family: 'Syncopate', sans-serif; 
    font-size: clamp(1.6rem, 7vw, 3.2rem); 
    letter-spacing: 12px; 
    margin: 0; 
    text-transform: uppercase; 
    line-height: 1.2; 
}

header h1 span { 
    color: var(--accent); 
    text-shadow: 0 0 30px rgba(188, 19, 254, 0.6); 
}

.video-grid { 
    display: grid; 
    gap: 40px 30px; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    padding-bottom: 60px; 
}

.video-card { 
    background: var(--card-bg); 
    border-radius: 15px; 
    border: 1px solid #222; 
    position: relative; 
    transition: 0.4s ease; 
    scroll-margin-top: 120px; 
    z-index: 1;
}

/* Arrival Glow Animation */
@keyframes anchor-glow {
    0% { border-color: #222; box-shadow: 0 0 0 rgba(188, 19, 254, 0); }
    50% { border-color: var(--accent); box-shadow: 0 0 30px rgba(188, 19, 254, 0.5); }
    100% { border-color: #222; box-shadow: 0 0 0 rgba(188, 19, 254, 0); }
}

.video-card:target {
    animation: anchor-glow 3s ease-in-out;
    border-color: var(--accent);
}

.video-card:hover, .video-card:focus-within { 
    border-color: var(--accent); 
    transform: translateY(-5px); 
    z-index: 10; 
}

.thumbnail-wrapper { 
    position: relative; 
    cursor: pointer; 
    aspect-ratio: 16 / 9; 
    overflow: hidden; 
    border-radius: 15px 15px 0 0; 
    background: #000; 
}

.thumbnail-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
    opacity: 1; 
}

.video-card:hover .thumbnail-wrapper img { 
    transform: scale(1.05); 
    opacity: 1; 
}

.overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    transition: 0.3s; 
    background: rgba(0,0,0,0.4); 
}

.play-icon-main { 
    font-size: 50px; 
    color: var(--accent); 
    filter: drop-shadow(0 0 15px var(--accent)); 
}

.video-card:hover .overlay { 
    opacity: 1; 
}

.video-info { 
    padding: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    min-height: 85px; 
}

.video-info h3 { 
    margin: 0; 
    font-size: 0.72rem; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    line-height: 1.5; 
    max-width: 75%; 
    font-weight: 600; 
    color: #eee; 
}

.options-container { 
    position: relative; 
}

.options-btn { 
    background: none; 
    border: none; 
    color: var(--text-dim); 
    cursor: pointer; 
    padding: 8px; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    border-radius: 50%; 
}

.options-btn:hover { 
    color: var(--accent); 
    background: rgba(255,255,255,0.05); 
}

.dropdown-menu { 
    position: absolute; 
    right: 0; 
    top: 100%; 
    width: 220px; 
    background: #1c1c21; 
    border: 1px solid #333; 
    border-radius: 10px;
    display: none; 
    flex-direction: column; 
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    margin-top: 10px; 
    overflow: hidden;
}

.dropdown-menu.show { 
    display: flex; 
}

.dropdown-item { 
    padding: 14px 18px; 
    font-size: 0.7rem; 
    color: #ccc; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    transition: 0.2s; 
    cursor: pointer; 
    border: none; 
    background: none; 
    width: 100%; 
    text-align: left;
    text-transform: uppercase; 
    letter-spacing: 1px;
}



.dropdown-item:hover { 
    background: var(--accent); 
    color: white; 
}

.dropdown-item svg { 
    width: 16px; 
    height: 16px; 
    fill: currentColor; 
    flex-shrink: 0; 
}

/* CONTACT SECTION */
.contact-section { 
    max-width: 600px; 
    margin: 40px auto 20px; 
    padding: 40px; 
    background: var(--card-bg); 
    border-radius: 20px; 
    border: 1px solid #222; 
}

.contact-section h2 { 
    font-family: 'Syncopate', sans-serif; 
    font-size: 1rem; 
    letter-spacing: 4px; 
    text-align: center; 
    margin-bottom: 30px; 
    color: var(--accent); 
}

.contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.contact-form input, 
.contact-form textarea { 
    background: #0a0a0c; 
    border: 1px solid #333; 
    border-radius: 8px; 
    padding: 15px; 
    color: white; 
    font-family: 'Inter', sans-serif; 
    font-size: 0.9rem; 
    outline: none; 
    transition: 0.3s; 
}

.contact-form input:focus, 
.contact-form textarea:focus { 
    border-color: var(--accent); 
}

.contact-form button { 
    background: var(--accent); 
    color: white; 
    border: 1px solid var(--accent); 
    padding: 15px; 
    border-radius: 8px; 
    font-family: 'Syncopate', sans-serif; 
    font-size: 0.8rem; 
    cursor: pointer; 
    transition: 0.4s; 
    letter-spacing: 2px; 
}

.contact-form button:hover { 
    filter: brightness(1.1); 
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4); 
}

.contact-form button.sent { 
    background: black !important; 
    color: var(--accent) !important; 
    border: 1px solid var(--accent) !important; 
    cursor: default; 
}

.hp-field { 
    display: none !important; 
    visibility: hidden !important; 
}

/* SOCIAL FOOTER */
.social-footer { 
    text-align: center; 
    margin-bottom: 100px; 
    padding-top: 20px; 
}

.social-btns { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 15px; 
}

.social-btn { 
    background: #16161a; 
    border: 1px solid #333; 
    padding: 12px; 
    border-radius: 50%; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
}

.social-btn:hover { 
    border-color: var(--accent); 
    transform: translateY(-3px); 
}

.social-btn svg { 
    width: 20px; 
    height: 20px; 
    fill: white; 
}

/* MODAL & TOAST */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.98); 
    backdrop-filter: blur(15px); 
}

.modal-content { 
    position: relative; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 90%; 
    max-width: 1000px; 
    aspect-ratio: 16 / 9; 
}

.modal-content iframe, 
.modal-content video { 
    width: 100%; 
    height: 100%; 
    border: none; 
    border-radius: 12px; 
}

.modal-content.audio-mode {
    max-width: 520px;
    aspect-ratio: auto;
}

.modal-content audio {
    width: 100%;
    border-radius: 12px;
}

.close-modal { 
    position: absolute; 
    top: -28px; 
    right: 0; 
    font-size: 14px; 
    color: white; 
    cursor: pointer; 
    z-index: 3000; 
    line-height: 1;
}

#share-toast { 
    visibility: hidden; 
    min-width: 280px; 
    background-color: var(--accent); 
    color: #fff; 
    text-align: center; 
    border-radius: 8px; 
    padding: 16px; 
    position: fixed; 
    z-index: 4000; 
    left: 50%; 
    bottom: 30px; 
    transform: translateX(-50%); 
    font-size: 0.75rem; 
    font-weight: 600; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

#share-toast.show { 
    visibility: visible; 
}

#landscape-close-btn {
    display: none !important;
}

