:root {
    --text-color: #000;
    --bg-color: #fff;
    --font-main: 'Inter', sans-serif;
    --font-tech: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    /* Lock scroll for poster feel */
    height: 100vh;
    width: 100vw;
}

/* Layout Container */
.layout-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Background Grid */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Header */
.site-header {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -2px;
}

.header-decoration {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #000;
    padding: 5px 12px;
    border-radius: 50px;
    background: #fff;
}

.dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

/* Background Layer (Text) */
.bg-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    pointer-events: none;
}

.giant-text {
    font-size: 20vw;
    /* Reduced from 28vw to prevent collision */
    line-height: 0.8;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.08em;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns the left edge of WIN and RUNE */
    padding-left: 5vw;
    /* Visual shifting to balance the negative space */
}

.giant-text .row {
    display: block;
}

/* Character Layer */
.character-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push right */
    pointer-events: none;
}

.rune-knight-img {
    height: 120%;
    /* Original manual edit preserved */
    width: auto;
    object-fit: contain;
    transform: translateX(-5%);
    /* Move left to balance whitespace */
    /* Remove mask since it's transparent cutout now */
}

/* Info Layer & Decorations */
.info-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    pointer-events: none;
}

.tech-box {
    position: absolute;
    font-family: var(--font-tech);
}

.top-left {
    top: 15%;
    left: 40px;
}

.label {
    font-size: 0.6rem;
    color: #666;
    margin-bottom: 2px;
}

.value {
    font-size: 0.8rem;
    font-weight: 700;
}

.bar-code {
    margin-top: 5px;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.6rem;
}

.bottom-left {
    bottom: 40px;
    left: 40px;
    max-width: 400px;
}

.brand-block h2 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 5px;
    line-height: 1;
}

.brand-block p {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    line-height: 1.4;
    color: #444;
}

.tech-line {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 15px 0;
}

.footer-note {
    font-family: var(--font-tech);
    font-size: 0.8rem;
}

.long-dash {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #000;
    vertical-align: middle;
    margin: 0 5px;
}

.bottom-right {
    bottom: 40px;
    right: 40px;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.2rem;
    text-align: right;
}

.scan-line {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    margin-top: 5px;
    opacity: 0.6;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.2;
    }
}

.top-right-deco {
    position: absolute;
    top: 120px;
    right: 50px;
    text-align: right;
    font-family: var(--font-tech);
    font-size: 0.7rem;
}

.circle-ring {
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 5px;
}

/* Floating Decos */
.deco-cross {
    position: absolute;
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 300;
    color: #000;
}

.pos-1 {
    top: 20%;
    right: 25%;
}

.pos-2 {
    bottom: 25%;
    left: 35%;
}

.pos-3 {
    top: 45%;
    left: 8%;
}

.pos-5 {
    bottom: 50%;
    right: 10%;
}

.deco-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 50%;
    top: 5%;
    left: 45%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.vertical-line {
    position: absolute;
    top: 0;
    left: 20%;
    height: 100vh;
    width: 1px;
    background: rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .giant-text {
        font-size: 20vw;
    }

    .rune-knight-img {
        transform: translateX(20%);
    }
}