/* Address Numerology Calculator Styles */

/* Calculator Card */
.address-card {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.calculator-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.calculator-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Form Layout */
.address-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-label .required {
    color: #f59e0b;
}

.form-label .optional {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

.form-input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    transition: all 0.2s ease;
}

.form-input:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Results Container */
.results-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Primary Result Display */
.result-primary {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.result-number {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.result-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.result-keywords {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.result-interpretation {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Master Number Badge */
.master-number-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 215, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.badge-number {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.badge-text {
    font-size: 0.9rem;
    color: #FFD700;
}

/* Karmic Debt Warning */
.karmic-debt-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.karmic-warning-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.karmic-icon {
    font-size: 1.5rem;
}

.karmic-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #f59e0b;
}

.karmic-number {
    font-family: var(--font-primary);
    font-weight: 900;
    color: #f59e0b;
}

.karmic-lesson {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.karmic-overview {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Calculation Breakdown */
.breakdown-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.breakdown-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.breakdown-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-step:last-of-type {
    border-bottom: none;
}

.breakdown-step.final {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-primary);
    border-bottom: none;
}

.step-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.step-value {
    color: var(--color-text-primary);
    font-weight: 600;
    font-family: monospace;
    font-size: 1rem;
}

.breakdown-step.final .step-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.breakdown-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.breakdown-note.karmic {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.breakdown-note.master {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

/* Street Comparison */
.street-comparison {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.street-comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.street-result-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-secondary);
}

.street-result-name {
    font-size: 1rem;
    color: var(--color-text-primary);
}

.street-compat-note {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Detailed Results Sections */
.detailed-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.detail-box h4 {
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-box p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.detail-box.remedies,
.detail-box.feng-shui {
    grid-column: 1 / -1;
}

.detail-box .color-meaning {
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Pythagorean Chart */
.pythagorean-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.pythagorean-table-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pythagorean-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.pythagorean-table th,
.pythagorean-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.pythagorean-table th {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pythagorean-table tr:last-child td {
    border-bottom: none;
}

.pythagorean-table tbody tr {
    transition: all 0.3s ease;
}

.pythagorean-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.1);
}

.chart-number {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Unique colors for each chart number */
.chart-number[data-num="1"] {
    background: rgba(199, 210, 254, 0.15);
    border: 2px solid rgba(199, 210, 254, 0.4);
    color: #C7D2FE;
    text-shadow: 0 0 20px rgba(199, 210, 254, 0.8), 0 0 40px rgba(199, 210, 254, 0.4);
}

.chart-number[data-num="2"] {
    background: rgba(74, 222, 128, 0.15);
    border: 2px solid rgba(74, 222, 128, 0.4);
    color: #4ADE80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.8), 0 0 40px rgba(74, 222, 128, 0.4);
}

.chart-number[data-num="3"] {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: #FBBF24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 40px rgba(251, 191, 36, 0.4);
}

.chart-number[data-num="4"] {
    background: rgba(167, 139, 250, 0.15);
    border: 2px solid rgba(167, 139, 250, 0.4);
    color: #A78BFA;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.8), 0 0 40px rgba(167, 139, 250, 0.4);
}

.chart-number[data-num="5"] {
    background: rgba(252, 211, 77, 0.15);
    border: 2px solid rgba(252, 211, 77, 0.4);
    color: #FCD34D;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.8), 0 0 40px rgba(252, 211, 77, 0.4);
}

.chart-number[data-num="6"] {
    background: rgba(251, 113, 133, 0.15);
    border: 2px solid rgba(251, 113, 133, 0.4);
    color: #FB7185;
    text-shadow: 0 0 20px rgba(251, 113, 133, 0.8), 0 0 40px rgba(251, 113, 133, 0.4);
}

.chart-number[data-num="7"] {
    background: rgba(34, 211, 238, 0.15);
    border: 2px solid rgba(34, 211, 238, 0.4);
    color: #22D3EE;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.8), 0 0 40px rgba(34, 211, 238, 0.4);
}

.chart-number[data-num="8"] {
    background: rgba(248, 113, 113, 0.15);
    border: 2px solid rgba(248, 113, 113, 0.4);
    color: #F87171;
    text-shadow: 0 0 20px rgba(248, 113, 113, 0.8), 0 0 40px rgba(248, 113, 113, 0.4);
}

.chart-number[data-num="9"] {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
}

.chart-letters {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Pythagorean Examples Box */
.pythagorean-examples {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    padding: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pythagorean-examples p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pythagorean-examples .examples-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pythagorean-examples .examples-title::before {
    content: "//";
    color: #3b82f6;
}

.examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.examples-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid #3b82f6;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.examples-list li:hover {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #a78bfa;
}

.examples-list .example-apt {
    font-weight: 600;
    color: #60a5fa;
    min-width: 90px;
}

.examples-list .example-calc {
    color: var(--color-text-muted);
}

.examples-list .example-result {
    font-weight: 700;
    color: #10b981;
    margin-left: auto;
}

/* Number Cards Grid */
.number-cards-section {
    padding: 4rem 0;
}

.number-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.number-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.number-card-header {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.card-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.number-card-body {
    padding: 1.25rem;
}

.card-keywords {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.card-overview {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.card-section h4 {
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-section p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.card-section.ideal {
    border-left: 3px solid var(--color-primary);
}

/* Number card colors */
.number-card[data-number="1"] .card-number {
    background: rgba(199, 210, 254, 0.1);
    border-color: rgba(199, 210, 254, 0.3);
    color: #C7D2FE;
    text-shadow: 0 0 20px rgba(199, 210, 254, 0.6);
}
.number-card[data-number="1"]:hover { border-color: rgba(199, 210, 254, 0.5); }

.number-card[data-number="2"] .card-number {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #4ADE80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}
.number-card[data-number="2"]:hover { border-color: rgba(74, 222, 128, 0.5); }

.number-card[data-number="3"] .card-number {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #FBBF24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}
.number-card[data-number="3"]:hover { border-color: rgba(251, 191, 36, 0.5); }

.number-card[data-number="4"] .card-number {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.3);
    color: #A78BFA;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}
.number-card[data-number="4"]:hover { border-color: rgba(167, 139, 250, 0.5); }

.number-card[data-number="5"] .card-number {
    background: rgba(252, 211, 77, 0.1);
    border-color: rgba(252, 211, 77, 0.3);
    color: #FCD34D;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.6);
}
.number-card[data-number="5"]:hover { border-color: rgba(252, 211, 77, 0.5); }

.number-card[data-number="6"] .card-number {
    background: rgba(251, 113, 133, 0.1);
    border-color: rgba(251, 113, 133, 0.3);
    color: #FB7185;
    text-shadow: 0 0 20px rgba(251, 113, 133, 0.6);
}
.number-card[data-number="6"]:hover { border-color: rgba(251, 113, 133, 0.5); }

.number-card[data-number="7"] .card-number {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    color: #22D3EE;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
}
.number-card[data-number="7"]:hover { border-color: rgba(34, 211, 238, 0.5); }

.number-card[data-number="8"] .card-number {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
    color: #F87171;
    text-shadow: 0 0 20px rgba(248, 113, 113, 0.6);
}
.number-card[data-number="8"]:hover { border-color: rgba(248, 113, 113, 0.5); }

.number-card[data-number="9"] .card-number {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.number-card[data-number="9"]:hover { border-color: rgba(255, 215, 0, 0.5); }

/* Master Numbers Section */
.master-numbers-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.master-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.master-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.master-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.master-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.master-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.master-keywords {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.master-overview {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.master-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.master-detail {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.master-detail h4 {
    font-size: 0.85rem;
    color: #FFD700;
    margin-bottom: 0.25rem;
}

.master-detail p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Karmic Debt Section */
.karmic-section {
    padding: 4rem 0;
}

.karmic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.karmic-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.karmic-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.karmic-num {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: #f59e0b;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.karmic-reduces {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.karmic-lesson-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.karmic-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.karmic-remedies {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.karmic-remedies h4 {
    font-size: 0.85rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.karmic-remedies p {
    font-size: 0.85rem;
    margin: 0;
}

/* Famous Addresses Section */
.famous-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.famous-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.famous-address-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.famous-address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.famous-address-card.master {
    border-color: rgba(255, 215, 0, 0.3);
}

.famous-address-card.karmic {
    border-color: rgba(245, 158, 11, 0.3);
}

.famous-address-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.famous-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.famous-address-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.famous-calculation {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: monospace;
}

.famous-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.master-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.karmic-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.famous-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.famous-energy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Life Path Compatibility Section */
.compatibility-section {
    padding: 4rem 0;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.compat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.compat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compat-lp-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.compat-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compat-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.compat-label {
    min-width: 80px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compat-label.best {
    color: #10b981;
}

.compat-label.challenging {
    color: #f59e0b;
}

.compat-numbers {
    display: flex;
    gap: 0.5rem;
}

.compat-num {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.compat-num.best {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.compat-num.challenging {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.compat-tip {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.step-card:nth-child(1) .step-number {
    background: rgba(199, 210, 254, 0.1);
    border-color: rgba(199, 210, 254, 0.3);
    color: #C7D2FE;
    text-shadow: 0 0 20px rgba(199, 210, 254, 0.5);
}

.step-card:nth-child(2) .step-number {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #4ADE80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.step-card:nth-child(3) .step-number {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #FBBF24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.step-card:nth-child(4) .step-number {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
    color: #F87171;
    text-shadow: 0 0 20px rgba(248, 113, 113, 0.5);
}

.step-card:nth-child(5) .step-number {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #A78BFA;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Example Box */
.example-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.example-box .subsection-title {
    color: #3b82f6;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.example-box p {
    margin: 0.75rem 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.example-box strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Related Calculators */
.related-section {
    padding: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.related-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.related-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.related-card h3 {
    color: var(--color-text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.related-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Calculate Again Button */
.btn-calculate-again {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-calculate-again:hover {
    background: var(--color-primary);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .detailed-results {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 4rem;
    }

    .number-cards-grid {
        grid-template-columns: 1fr;
    }

    .master-numbers-grid,
    .karmic-grid,
    .famous-addresses-grid,
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .result-number {
        font-size: 3rem;
    }

    .card-number,
    .master-number,
    .karmic-num {
        font-size: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .famous-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .chart-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .pythagorean-table th,
    .pythagorean-table td {
        padding: 0.75rem 0.5rem;
    }

    .examples-list li {
        flex-wrap: wrap;
    }

    .examples-list .example-result {
        margin-left: 0;
        width: 100%;
        margin-top: 0.5rem;
    }

    .practical-card-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Practical Applications Section */
.practical-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.practical-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.practical-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.practical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.practical-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.practical-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.practical-card:nth-child(1) .practical-icon {
    border-color: rgba(74, 222, 128, 0.4);
}

.practical-card:nth-child(2) .practical-icon {
    border-color: rgba(251, 191, 36, 0.4);
}

.practical-card:nth-child(3) .practical-icon {
    border-color: rgba(59, 130, 246, 0.4);
}

.practical-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.practical-card:nth-child(1) .practical-card-title {
    color: #4ADE80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.practical-card:nth-child(2) .practical-card-title {
    color: #FBBF24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.practical-card:nth-child(3) .practical-card-title {
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.practical-card-body {
    padding: 1.5rem;
}

.practical-card-body p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.practical-highlight {
    margin-top: 1.25rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid;
}

.practical-card:nth-child(1) .practical-highlight {
    border-left-color: #4ADE80;
}

.practical-card:nth-child(2) .practical-highlight {
    border-left-color: #FBBF24;
}

.practical-card:nth-child(3) .practical-highlight {
    border-left-color: #60a5fa;
}

.practical-highlight p {
    font-size: 0.9rem;
    margin: 0;
}

.practical-highlight strong {
    color: var(--color-text-primary);
}

@media (max-width: 768px) {
    .practical-cards {
        grid-template-columns: 1fr;
    }
}
