/* --- Modern evil styles. --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Bpmf Huninn', sans-serif;
    padding: 80px 40px;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 85%;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
}

/* The header section */
header {
    text-align: center;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

header .site-title {
    background: linear-gradient(90deg, #1900ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 3.5em;
    font-weight: 900;
    margin: 0;
    padding: 0;
    text-align: center;
    flex-grow: 1;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4f14bb;
    text-shadow: 0 0 50px #702dec;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The menu for header section */

header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

header nav.menu-open {
    transform: translateY(0);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 10000;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

header li {
    margin: 30px 0;
}

header a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2em;
    transition: color 0.3s ease;
}

header a:hover {
    color: #0027a7;
}

/* --- Grid layout --- */
.content-wrapper {
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.content-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 140px;
}

.content-row:nth-child(even) {
    direction: rtl;
}

.content-row:nth-child(even) .media-container,
.content-row:nth-child(even) .text-box {
    direction: ltr;
}

/* --- Images & video --- */
.media-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #080808;
    box-shadow: 
        -6px -6px 15px rgba(255, 255, 255, 0.04),
        6px 6px 20px rgba(0, 0, 0, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 2.5rem;
    font-weight: bold;
}

.video-embed {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
}

video {
    max-width: 110%;
    height: auto;
    display: block;
}

/* --- Font and writing --- */
.text-box {
    padding: 20px;
    text-align: left;
}

.text-box h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.text-box p {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.text-box ul {
    font-size: 0.76rem;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    list-style-type: none;
}

/* --- Footer --- */
footer {
    margin-top: 150px;
    padding-top: 50px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* --- Phone --- */
@media (max-width: 1024px) {
    .container { padding: 40px 20px; }
    
    h1 { font-size: 3.5rem; }

    .content-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }

    .content-row:nth-child(even) {
        direction: ltr;
    }

    .text-box { 
        text-align: center; 
        padding: 0; 
    }
    
    .text-box h2 { font-size: 2.5rem; }
    .text-box p { font-size: 1.2rem; }
}
