/* ============================================
   NERO CÉSAR E A BESTA - ESTILO PROFISSIONAL
   Baseado no padrão do site de referência
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Navegação Superior Flutuante */
.platform-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.btn-platform-home {
    background: rgba(139, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-platform-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: rgba(100, 0, 0, 0.95);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 80px 20px 60px;
    min-height: 500px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.logo-small {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-iniciar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #8B0000;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-iniciar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Barra de Navegação */
.nav-bar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #8B0000;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #f5f5f5;
    color: #8B0000;
}

/* Tabs Container */
.tabs-container {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 60px;
    z-index: 999;
}

.tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.tab {
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab:hover {
    color: #8B0000;
    background: #f9f9f9;
}

.tab.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

/* Study Article */
.study-article {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    border-left: 4px solid #8B0000;
    padding-left: 16px;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin-top: 32px;
    margin-bottom: 16px;
}

.paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, #ffe8e8 0%, #fff5f5 100%);
    border-left: 4px solid #8B0000;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Image Container */
.image-container {
    margin: 32px 0;
    text-align: center;
}

.content-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.image-caption {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 12px;
}

/* Highlight Boxes */
.highlight-box {
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid;
}

.highlight-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.highlight-box ul {
    margin-left: 24px;
    margin-top: 12px;
}

.highlight-box li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box.warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.highlight-box.info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.highlight-box.success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

/* Timeline Box */
.timeline-box {
    margin: 32px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    min-width: 80px;
    padding: 8px 12px;
    background: #8B0000;
    color: white;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Quote Box */
.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #8B0000;
    padding: 24px 24px 24px 60px;
    margin: 32px 0;
    position: relative;
    border-radius: 8px;
}

.quote-icon {
    position: absolute;
    left: 20px;
    top: 24px;
    font-size: 24px;
    color: #8B0000;
    opacity: 0.5;
}

.quote-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.verse-ref {
    font-size: 14px;
    color: #777;
    font-weight: 600;
    margin-top: 12px;
    display: block;
}

/* Emperor Profile */
.emperor-profile {
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border: 2px solid #8B0000;
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
}

.profile-header {
    background: #8B0000;
    color: white;
    padding: 24px;
    text-align: center;
}

.profile-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.profile-dates {
    font-size: 18px;
    opacity: 0.9;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    padding: 32px;
}

.profile-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
}

.info-item strong {
    color: #8B0000;
}

/* Characteristics Grid */
.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.char-card {
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
}

.char-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.char-card.positive {
    background: #e8f5e9;
    border-color: #4caf50;
}

.char-card.negative {
    background: #ffebee;
    border-color: #f44336;
}

.char-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.char-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.char-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Two Column Box */
.two-column-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.column {
    padding: 24px;
    border-radius: 8px;
    border: 2px solid;
}

.column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

.error-column {
    background: #fff5f5;
    border-color: #fc8181;
    color: #742a2a;
}

.success-column {
    background: #f0fff4;
    border-color: #68d391;
    color: #22543d;
}

/* Info Box */
.info-box {
    background: #f0f8ff;
    border: 2px solid #8B0000;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Persecution Cards */
.persecution-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.persecution-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.persecution-card:hover {
    border-color: #8B0000;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.2);
    transform: translateY(-4px);
}

.persecution-card .card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.persecution-card h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.persecution-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.persecution-card .date {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Comparison Table */
.comparison-table {
    margin: 32px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #8B0000;
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #555;
}

.comparison-table tr:hover {
    background: #f9f9f9;
}

/* Impact Box */
.impact-box {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.impact-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Gematria Explanation */
.gematria-explanation {
    background: #f8f9fa;
    border: 2px solid #8B0000;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.gematria-explanation h4 {
    font-size: 20px;
    color: #8B0000;
    margin-bottom: 20px;
    text-align: center;
}

.hebrew-chart {
    max-width: 400px;
    margin: 0 auto;
}

.chart-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.chart-row:last-child {
    border-bottom: none;
}

.chart-header {
    font-weight: 600;
    color: #8B0000;
    text-align: center;
}

.chart-cell {
    text-align: center;
    font-size: 16px;
    color: #555;
}

/* Calculation Box */
.calculation-box {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border: 3px solid #8B0000;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.calculation-box h4 {
    font-size: 22px;
    color: #8B0000;
    margin-bottom: 24px;
    text-align: center;
}

.calculation-steps {
    max-width: 500px;
    margin: 0 auto;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.calc-row.header {
    background: #8B0000;
    color: white;
    font-weight: 600;
    border-radius: 6px 6px 0 0;
}

.calc-row.separator {
    background: #f0f0f0;
    font-weight: 600;
    color: #8B0000;
    grid-template-columns: 1fr;
    text-align: center;
}

.calc-row.total {
    background: #8B0000;
    color: white;
    font-weight: 700;
    font-size: 20px;
    border-radius: 0 0 6px 6px;
    grid-template-columns: 2fr 1fr;
}

.hebrew-letter {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.value {
    text-align: center;
    font-weight: 600;
    color: #8B0000;
}

.value-total {
    text-align: center;
    font-size: 32px;
}

/* Evidence Box */
.evidence-box {
    background: #e8f4f8;
    border-left: 4px solid #2196F3;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.evidence-box h4 {
    font-size: 20px;
    color: #0d47a1;
    margin-bottom: 16px;
}

.evidence-box p {
    font-size: 16px;
    color: #1565c0;
    line-height: 1.8;
    margin-bottom: 16px;
}

.variant-calc {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.variant-calc div {
    font-size: 16px;
    padding: 12px;
    margin-bottom: 8px;
    background: #f5f5f5;
    border-radius: 6px;
}

.variant-calc .number {
    color: #8B0000;
    font-weight: 700;
    font-size: 20px;
}

/* Bible Passage */
.bible-passage {
    background: linear-gradient(135deg, #f5f0e8, #faf7f2);
    border: 2px solid #8B0000;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.bible-passage h3 {
    font-size: 24px;
    color: #8B0000;
    margin-bottom: 20px;
    text-align: center;
}

.passage-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.passage-text p {
    margin-bottom: 16px;
}

.passage-text sup {
    color: #8B0000;
    font-weight: 600;
    margin-right: 4px;
}

.passage-ref {
    text-align: center;
    font-size: 14px;
    color: #777;
    font-weight: 600;
    margin-top: 20px;
    font-style: italic;
}

/* Verse Analysis */
.verse-analysis {
    margin: 32px 0;
}

.analysis-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #8B0000;
}

.analysis-item.highlight {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border-left-width: 6px;
}

.verse-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.analysis-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.analysis-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.analysis-content p:last-child {
    margin-bottom: 0;
}

/* Context Box */
.context-box {
    background: #f8f9fa;
    border: 2px solid #8B0000;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.context-box h4 {
    font-size: 20px;
    color: #8B0000;
    margin-bottom: 20px;
}

.dating-theories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.theory {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.theory h5 {
    font-size: 16px;
    color: #8B0000;
    margin-bottom: 12px;
}

.theory ul {
    list-style: none;
    padding: 0;
}

.theory li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.theory li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
}

.context-box .note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.comparison-card {
    border: 2px solid;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.comparison-card.highlight {
    border-width: 3px;
}

.comparison-header {
    padding: 16px;
    color: white;
    text-align: center;
}

.comparison-header.besta {
    background: linear-gradient(135deg, #8B0000, #DC143C);
}

.comparison-header.nero {
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
}

.comparison-header h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.comparison-header p {
    font-size: 14px;
    opacity: 0.9;
}

.comparison-body {
    padding: 20px;
    background: white;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

/* Detailed Analysis */
.detailed-analysis {
    margin: 32px 0;
}

.analysis-section {
    margin-bottom: 32px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #8B0000;
}

.analysis-section.highlight {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border-left-width: 6px;
}

.analysis-section h4 {
    font-size: 20px;
    color: #8B0000;
    margin-bottom: 16px;
}

.analysis-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.analysis-text p:last-child {
    margin-bottom: 0;
}

/* Theological Box */
.theological-box {
    background: linear-gradient(135deg, #e8f4f8, #ffffff);
    border: 2px solid #2196F3;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.theological-box h4 {
    font-size: 22px;
    color: #0d47a1;
    margin-bottom: 24px;
    text-align: center;
}

.perspective {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2196F3;
}

.perspective:last-child {
    margin-bottom: 0;
}

.perspective h5 {
    font-size: 18px;
    color: #1565c0;
    margin-bottom: 12px;
}

.perspective p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, #d4edda, #f0fff4);
    border: 3px solid #28a745;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.conclusion-box h3 {
    font-size: 24px;
    color: #155724;
    margin-bottom: 20px;
    text-align: center;
}

.conclusion-box p {
    font-size: 16px;
    color: #155724;
    line-height: 1.8;
    margin-bottom: 16px;
}

.conclusion-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.conclusion-box li {
    font-size: 16px;
    color: #155724;
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #DC143C;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.study-date {
    color: #DC143C !important;
    font-weight: 600;
}

.footer-link {
    display: inline-block;
    color: #DC143C;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(220, 20, 60, 0.2);
    color: #DC143C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #DC143C;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .platform-nav {
        top: 10px;
        right: 10px;
    }
    
    .btn-platform-home {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .tabs {
        padding: 0 10px;
    }
    
    .tab {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .tab-content {
        padding: 24px 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .subsection-title {
        font-size: 20px;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-box,
    .persecution-cards,
    .comparison-grid,
    .dating-theories,
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: #8B0000;
    color: white;
}
