/* Base Styles & Reset */
:root {
    --shpimp-color-bg-dark: #070B19;
    --shpimp-color-bg-medium: #0F172A;
    --shpimp-color-bg-card: #1E293B;
    --shpimp-color-gold: #D4AF37;
    --shpimp-color-gold-hover: #FCE68A;
    --shpimp-color-text-main: #F8FAFC;
    --shpimp-color-text-muted: #94A3B8;
    --shpimp-color-accent: #9D2449; /* Deep ruby accent */
    
    --shpimp-font-heading: 'Playfair Display', serif;
    --shpimp-font-body: 'Montserrat', sans-serif;
    
    --shpimp-spacing-sm: 1rem;
    --shpimp-spacing-md: 2rem;
    --shpimp-spacing-lg: 4rem;
    --shpimp-spacing-xl: 6rem;
}

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

body {
    font-family: var(--shpimp-font-body);
    background-color: var(--shpimp-color-bg-dark);
    color: var(--shpimp-color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--shpimp-font-heading);
    font-weight: 700;
    color: var(--shpimp-color-gold);
}

a {
    color: var(--shpimp-color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--shpimp-color-gold-hover);
}

/* Header */
.shpimp-top-nav {
    background-color: rgba(7, 11, 25, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.shpimp-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--shpimp-spacing-sm) var(--shpimp-spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.shpimp-logo-mark {
    font-family: var(--shpimp-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--shpimp-color-bg-dark);
    background-color: var(--shpimp-color-gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.shpimp-brand-text {
    display: flex;
    flex-direction: column;
}

.shpimp-brand-title {
    font-family: var(--shpimp-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.shpimp-brand-sub {
    font-size: 0.85rem;
    color: var(--shpimp-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.shpimp-age-badge {
    border: 2px solid var(--shpimp-color-accent);
    color: var(--shpimp-color-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.shpimp-exclusive-badge {
    background: linear-gradient(135deg, var(--shpimp-color-gold), #B8860B);
    color: var(--shpimp-color-bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.shpimp-hero-showcase {
    background: radial-gradient(circle at center, var(--shpimp-color-bg-medium) 0%, var(--shpimp-color-bg-dark) 100%);
    padding: var(--shpimp-spacing-xl) var(--shpimp-spacing-md);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.shpimp-hero-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.03) 0px, rgba(212, 175, 55, 0.03) 1px, transparent 1px, transparent 10px);
    pointer-events: none;
}

.shpimp-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.shpimp-hero-kicker {
    display: block;
    color: var(--shpimp-color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: var(--shpimp-spacing-sm);
    font-weight: 600;
}

.shpimp-hero-heading {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: var(--shpimp-spacing-md);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.shpimp-hero-paragraph {
    font-size: 1.25rem;
    color: var(--shpimp-color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--shpimp-spacing-lg);
}

.shpimp-hero-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--shpimp-spacing-md);
    margin-top: var(--shpimp-spacing-lg);
}

.shpimp-info-box {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--shpimp-spacing-md);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.shpimp-info-box:hover {
    transform: translateY(-5px);
    border-color: var(--shpimp-color-gold);
}

.shpimp-info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--shpimp-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.shpimp-info-value {
    display: block;
    font-family: var(--shpimp-font-heading);
    font-size: 1.25rem;
    color: var(--shpimp-color-gold);
}

/* Common Segment Styles */
.shpimp-safe-play-segment,
.shpimp-entertainment-segment {
    padding: var(--shpimp-spacing-xl) var(--shpimp-spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.shpimp-entertainment-segment {
    background-color: var(--shpimp-color-bg-medium);
}

.shpimp-segment-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.shpimp-segment-header {
    text-align: center;
    margin-bottom: var(--shpimp-spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shpimp-segment-title {
    font-size: 3rem;
    margin-bottom: var(--shpimp-spacing-sm);
}

.shpimp-segment-intro {
    font-size: 1.1rem;
    color: var(--shpimp-color-text-muted);
}

.shpimp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--shpimp-spacing-md);
}

.shpimp-feature-card {
    background-color: var(--shpimp-color-bg-card);
    padding: var(--shpimp-spacing-md);
    border-radius: 12px;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.shpimp-feature-card:hover {
    border-top-color: var(--shpimp-color-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.shpimp-card-kicker {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--shpimp-color-gold);
    background-color: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.shpimp-card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--shpimp-color-text-main);
}

.shpimp-card-text {
    color: var(--shpimp-color-text-muted);
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.shpimp-card-list {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.shpimp-card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--shpimp-color-text-main);
}

.shpimp-card-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--shpimp-color-gold);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Footer */
.shpimp-bottom-area {
    background-color: #040710;
    padding: var(--shpimp-spacing-xl) var(--shpimp-spacing-md) var(--shpimp-spacing-md);
}

.shpimp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shpimp-footer-slogan {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--shpimp-spacing-lg);
    padding-bottom: var(--shpimp-spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.shpimp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--shpimp-spacing-lg);
    margin-bottom: var(--shpimp-spacing-lg);
}

.shpimp-footer-desc,
.shpimp-footer-disclaimer {
    color: var(--shpimp-color-text-muted);
    font-size: 0.95rem;
}

.shpimp-footer-disclaimer {
    border-left: 2px solid var(--shpimp-color-accent);
    padding-left: 1rem;
}

.shpimp-footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    background-color: var(--shpimp-color-bg-card);
    padding: var(--shpimp-spacing-md);
    border-radius: 8px;
    margin-bottom: var(--shpimp-spacing-lg);
}

.shpimp-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.shpimp-contact-label {
    color: var(--shpimp-color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.shpimp-contact-value {
    font-weight: 600;
}

.shpimp-footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--shpimp-spacing-lg);
    flex-wrap: wrap;
}

.shpimp-nav-link {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
}

.shpimp-footer-copyright {
    text-align: center;
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: var(--shpimp-spacing-md);
}

/* Responsive */
@media (max-width: 768px) {
    .shpimp-hero-heading {
        font-size: 3rem;
    }
    
    .shpimp-segment-title {
        font-size: 2.25rem;
    }
    
    .shpimp-brand-area {
        width: 100%;
        justify-content: center;
    }
    
    .shpimp-badge-area {
        width: 100%;
        justify-content: center;
    }
    
    .shpimp-footer-slogan {
        font-size: 1.75rem;
    }
}
