/* ============================================
   White Trash Phone Sex - Entry Page
   SEO Optimized / Mobile First
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #121212;
    --color-card: #1e1e1e;
    --color-text: #e0e0e0;
    --color-text-muted: #999;
    --color-accent: #ff4757;
    --color-accent-light: #ff6b81;
    --color-gold: #ffc107;
    --color-gold-light: #ffd54f;
    --color-success: #28a745;
    --color-exit: #666;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.5);
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Banner */
header {
    text-align: center;
    margin-bottom: 25px;
}

.site-banner {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Age Warning / Entry Section */
.age-warning {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    margin-bottom: 30px;
}

.age-warning h1 {
    color: var(--color-accent);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.age-warning p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.age-warning strong {
    color: var(--color-text);
}

.entry-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.btn-enter,
.btn-exit {
    display: block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-enter {
    background: linear-gradient(135deg, var(--color-success), #20c997);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.btn-exit {
    background: var(--color-exit);
    color: #ccc;
}

.btn-exit:hover {
    background: #555;
    color: #fff;
}

.disclaimer {
    font-size: 0.9rem !important;
    color: #777 !important;
    font-style: italic;
}

/* Content Sections */
.content-section {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #333;
    box-shadow: var(--shadow);
}

.content-section h2 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    color: var(--color-accent-light);
    font-size: 1.15rem;
    margin: 15px 0 10px;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

.content-section a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.2s;
}

.content-section a:hover {
    color: var(--color-accent);
}

/* Features */
.features .feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: rgba(255, 71, 87, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 20px;
    border-radius: 4px;
}

/* Specialties Grid */
.specialty-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.specialty-grid li {
    background: rgba(255, 193, 7, 0.1);
    padding: 12px 18px;
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
}

.specialty-grid li::before {
    content: "✓";
    color: var(--color-gold);
    margin-right: 8px;
    font-weight: bold;
}

/* Rate Box */
.rate-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid #444;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.rate-box p {
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
    margin-bottom: 10px !important;
}

.rate-box p:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Compliance Badges */
.compliance {
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badges img {
    height: 31px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.badges a:hover img {
    opacity: 1;
}

.compliance p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.compliance a {
    color: #888;
    text-decoration: none;
}

.compliance a:hover {
    color: var(--color-gold);
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    color: #666;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

.sponsors {
    font-size: 0.8rem;
}

.sponsors a {
    color: #777;
    text-decoration: none;
}

.sponsors a:hover {
    color: var(--color-gold);
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .age-warning {
        padding: 25px 20px;
    }
    
    .age-warning h1 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-enter,
    .btn-exit {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: #fff;
        color: #000;
    }
    
    .age-warning,
    .compliance,
    footer {
        display: none;
    }
    
    .content-section {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}