:root {
    --bg-black: #1a1a1a;
    --bg-dark: #242424;
    --header-bg: #1e1e1e;
    --accent: #ff602a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-gray: rgba(255, 255, 255, 0.1);
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* TOP MENU (MoD Style) */
.header-top {
    background-color: var(--header-bg);
    color: var(--text-white);
    padding: 15px 0;
    border-bottom: 3px solid var(--accent);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mod-logo {
    height: 50px;
}

.mod-title {
    display: flex;
    flex-direction: column;
}

.mod-title h1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.mod-title span {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

.map-section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 11px;
    padding-left: 20px;
    border-left: 1px solid var(--border-gray);
}

.map-img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    border-left: 1px solid var(--border-gray);
    border-right: 1px solid var(--border-gray);
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    opacity: 0.8;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-decoration: none;
    color: var(--text-white);
}

/* HERO SECTION (Full Width) */
.hero-block {
    background: linear-gradient(135deg, #0c2d12 0%, #061a0a 100%);
    color: white;
    padding: 80px 0;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-block::after {
    content: 'P';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 300px;
    font-family: serif;
    font-weight: 900;
    opacity: 0.03;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.9;
}

.hero-amount {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    padding: 25px 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-amount span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 12px;
    color: var(--accent);
}

.hero-price {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* INFO CONTENT */
.main-info {
    padding-bottom: 100px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-row {
    margin-bottom: 30px;
}

.info-row p {
    font-size: 18px;
    font-weight: 500;
}

.legal-list {
    list-style: none;
}

.legal-item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.legal-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.legal-item span {
    font-size: 14px;
    color: #666;
}

/* Sidebar / CTA */
.sidebar-cta {
    position: sticky;
    top: 20px;
}

.btn-main {
    background: var(--accent);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 96, 42, 0.3);
    border-bottom: 3px solid rgba(0,0,0,0.1);
    display: block; /* Added for anchor support */
    text-align: center; /* Added for anchor support */
    text-decoration: none; /* Added for anchor support */
}

.btn-main:hover {
    box-shadow: 0 15px 30px rgba(255, 96, 42, 0.3);
}

@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
    .hero-content { flex-direction: column; text-align: center; gap: 30px; }
    .hero-amount { text-align: center; }
    .hero-text h2 { font-size: 36px; }
}
