:root {
    --pmr-primary: #0A192F;
    --pmr-accent: #D4AF37;
    --pmr-text-light: #F5F5F5;
    --pmr-text-dark: #333333;
    --pmr-bg-light: #FAFAFA;
    --pmr-bg-dark: #112240;
    --pmr-font-heading: 'Playfair Display', serif;
    --pmr-font-body: 'Inter', sans-serif;
    --pmr-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pmr-font-body);
    background-color: var(--pmr-bg-light);
    color: var(--pmr-text-dark);
    line-height: 1.6;
}

/* Header */
.pmr-top-nav {
    background-color: var(--pmr-primary);
    color: var(--pmr-text-light);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pmr-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pmr-brand-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pmr-logo-text {
    font-family: var(--pmr-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pmr-accent);
    border: 2px solid var(--pmr-accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.pmr-brand-names {
    display: flex;
    flex-direction: column;
}

.pmr-brand-main {
    font-family: var(--pmr-font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.pmr-brand-sub {
    font-size: 0.8rem;
    color: var(--pmr-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pmr-nav-links {
    display: flex;
    gap: 2rem;
}

.pmr-link {
    color: var(--pmr-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--pmr-transition);
}

.pmr-link:hover {
    color: var(--pmr-accent);
}

.pmr-badge-area {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pmr-badge-18 {
    background-color: transparent;
    border: 1px solid #FF4444;
    color: #FF4444;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.pmr-badge-exclusive {
    background-color: var(--pmr-accent);
    color: var(--pmr-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Hero Section */
.pmr-hero-banner {
    position: relative;
    background-color: var(--pmr-bg-dark);
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1590381105924-c725c4b63870?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pmr-text-light);
    padding: 4rem 2rem;
}

.pmr-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.pmr-hero-kicker {
    display: block;
    color: var(--pmr-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.pmr-hero-title {
    font-family: var(--pmr-font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pmr-hero-desc {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #E0E0E0;
}

.pmr-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pmr-hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: var(--pmr-transition);
}

.pmr-hero-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--pmr-accent);
    transform: translateY(-5px);
}

.pmr-hc-title {
    display: block;
    font-family: var(--pmr-font-heading);
    color: var(--pmr-accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pmr-hc-desc {
    font-size: 0.9rem;
    color: var(--pmr-text-light);
}

/* Sections */
.pmr-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pmr-section-dark {
    background-color: var(--pmr-bg-dark);
    color: var(--pmr-text-light);
    padding: 6rem 2rem;
}

.pmr-section-light {
    background-color: var(--pmr-bg-light);
    color: var(--pmr-text-dark);
    padding: 6rem 2rem;
}

.pmr-section-heading {
    font-family: var(--pmr-font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--pmr-accent);
}

.pmr-section-light .pmr-section-heading {
    color: var(--pmr-primary);
}

.pmr-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    opacity: 0.8;
}

.pmr-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pmr-feature-card {
    background: var(--pmr-bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--pmr-transition);
    border-top: 4px solid var(--pmr-accent);
}

.pmr-section-dark .pmr-feature-card {
    background: rgba(255,255,255,0.03);
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--pmr-accent);
}

.pmr-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pmr-section-dark .pmr-feature-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(212, 175, 55, 0.5);
}

.pmr-fc-kicker {
    font-size: 0.8rem;
    color: var(--pmr-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.pmr-fc-title {
    font-family: var(--pmr-font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pmr-section-light .pmr-fc-title {
    color: var(--pmr-primary);
}

.pmr-fc-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.pmr-fc-list {
    list-style: none;
}

.pmr-fc-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.pmr-fc-list li::before {
    content: '◆';
    color: var(--pmr-accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

/* Footer */
.pmr-bottom-footer {
    background-color: #050C17;
    color: var(--pmr-text-light);
    padding: 5rem 2rem 2rem 2rem;
}

.pmr-footer-slogan {
    font-family: var(--pmr-font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--pmr-accent);
    margin-bottom: 4rem;
}

.pmr-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pmr-f-heading {
    font-family: var(--pmr-font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--pmr-text-light);
}

.pmr-f-text {
    font-size: 0.95rem;
    color: #BBBBBB;
    margin-bottom: 1.5rem;
}

.pmr-f-contacts p {
    margin-bottom: 0.5rem;
    color: #BBBBBB;
}

.pmr-f-link {
    color: var(--pmr-accent);
    text-decoration: none;
    transition: var(--pmr-transition);
}

.pmr-f-link:hover {
    color: #FFF;
}

.pmr-legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pmr-help-links {
    color: #BBBBBB;
}

.pmr-footer-copyright {
    text-align: center;
    padding-top: 2rem;
    color: #777;
    font-size: 0.9rem;
}

/* Cookie Banner */
.pmr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--pmr-primary);
    color: #FFF;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.pmr-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.pmr-cookie-content p {
    font-size: 0.9rem;
}

.pmr-cookie-content a {
    color: var(--pmr-accent);
}

.pmr-btn-accept {
    background: var(--pmr-accent);
    color: var(--pmr-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--pmr-transition);
}

.pmr-btn-accept:hover {
    background: #FFF;
}

/* Modals */
.pmr-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.pmr-modal-container {
    background: var(--pmr-bg-light);
    color: var(--pmr-text-dark);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-top: 4px solid var(--pmr-accent);
}

.pmr-modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--pmr-primary);
    cursor: pointer;
    transition: var(--pmr-transition);
}

.pmr-modal-close-btn:hover {
    color: var(--pmr-accent);
}

.pmr-modal-container h2 {
    font-family: var(--pmr-font-heading);
    color: var(--pmr-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pmr-modal-container h3 {
    font-family: var(--pmr-font-heading);
    color: var(--pmr-primary);
    margin: 1.5rem 0 0.5rem;
}

.pmr-modal-container p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #444;
}

/* Button link */
.pmr-btn-link {
    background: none;
    border: none;
    color: var(--pmr-accent);
    font: inherit;
    font-size: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: var(--pmr-transition);
    padding: 0;
}
.pmr-btn-link:hover {
    color: #FFF;
}

/* Responsive */
@media (max-width: 992px) {
    .pmr-hero-grid, .pmr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pmr-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .pmr-nav-links {
        display: none;
    }
    .pmr-hero-grid, .pmr-cards-grid, .pmr-footer-grid {
        grid-template-columns: 1fr;
    }
    .pmr-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
