:root {
    --snp-bg: transparent; /* Remove dark background */
    --snp-primary: #8b5cf6;
    --snp-text: #1e293b; /* Dark text for light background */
    --snp-title-font: 'Forum', serif;
    --snp-body-font: 'Inter', sans-serif;
}

.snp-premium-container {
    padding: 40px 10px;
    background: var(--snp-bg);
    color: var(--snp-text);
    font-family: var(--snp-body-font);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.snp-calculator-glass {
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

.snp-title {
    font-family: var(--snp-title-font);
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #0f172a;
}

.snp-input-section {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.snp-input-section input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 15px 20px;
    color: #1e293b;
    font-size: 1.2rem;
    width: 200px;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.snp-input-section input::placeholder {
    color: #94a3b8;
}

.snp-input-section input:focus {
    border-color: var(--snp-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

#snp-calculate-btn {
    background: linear-gradient(135deg, var(--snp-primary), #6366f1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

#snp-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.snp-star-viz {
    margin: 40px 0;
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
}

/* Star SVG Styles */
.snp-star-path {
    fill: none;
    stroke: #475569; /* Thick dark grey stroke */
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    animation: drawLine 3s ease-in-out forwards;
}

.snp-secondary-path {
    fill: none;
    stroke: #cbd5e1; /* Thin light grey lines */
    stroke-width: 1.5;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    animation: drawLine 3.5s ease-in-out forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.snp-point circle {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Subtle glow for main points and chakras */
.snp-glow-main {
    animation: subtleGlow 3s infinite alternate ease-in-out;
    transform-origin: center;
    transform-box: fill-box;
}

.snp-glow-chakra {
    animation: chakraGlow 2.5s infinite alternate ease-in-out;
}

@keyframes subtleGlow {
    0% { 
        filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1)); 
        transform: scale(0.96);
    }
    100% { 
        filter: drop-shadow(0 0 24px rgba(225, 29, 72, 0.7)); 
        transform: scale(1.08);
    }
}

@keyframes chakraGlow {
    0% { filter: brightness(1) drop-shadow(0 0 2px rgba(0, 0, 0, 0.05)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 20px currentColor); }
}

/* Text inside circles */
.snp-point-text {
    fill: #881337; /* Dark red/brown text for grey nodes */
    font-size: 22px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: central;
    font-family: var(--snp-body-font);
}

.snp-point-text-light {
    fill: #ffffff; /* White text for colored nodes */
    font-size: 24px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: central;
    font-family: var(--snp-body-font);
}

.snp-outer-ring-text {
    fill: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-anchor: middle;
    dominant-baseline: central;
}

.snp-teaser-results {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-top: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.snp-energy-card {
    margin-bottom: 20px;
}

.snp-energy-title {
    color: var(--snp-primary);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    font-size: 1.2rem;
}

.snp-btn-premium {
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Line Effects (from line_effect shortcode param) */
.snp-line-stream {
    stroke-dasharray: 20 15 !important;
    animation: drawLine 3s ease-in-out forwards, streamFlow 2s linear infinite 3s !important;
}
@keyframes streamFlow {
    to { stroke-dashoffset: -70; }
}

.snp-line-comet {
    fill: none;
    stroke: #ffffff;
    stroke-width: 8;
    filter: drop-shadow(0 0 12px #ffffff);
    stroke-linecap: round;
    stroke-dasharray: 50 6000;
    animation: cometTrace 3s linear infinite;
}
@keyframes cometTrace {
    0% { stroke-dashoffset: 6000; }
    100% { stroke-dashoffset: 0; }
}

.snp-line-breathing {
    animation: drawLine 3s ease-in-out forwards, breatheWidth 3s infinite alternate ease-in-out 3s !important;
}
.snp-line-breathing-secondary {
    animation: drawLine 3.5s ease-in-out forwards, breatheWidthSecondary 3s infinite alternate ease-in-out 3.5s !important;
}
@keyframes breatheWidth {
    0% { stroke-width: 6; filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.2)); stroke: #475569; }
    100% { stroke-width: 10; filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.8)); stroke: #8b5cf6; }
}
@keyframes breatheWidthSecondary {
    0% { stroke-width: 1.5; filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.1)); stroke: #cbd5e1; }
    100% { stroke-width: 4; filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6)); stroke: #a78bfa; }
}

.snp-line-glitch {
    animation: glitchDraw 3s steps(10) forwards !important;
}
@keyframes glitchDraw {
    0% { stroke-dashoffset: 6000; opacity: 0; }
    50% { opacity: 1; stroke-dasharray: 50 50; }
    100% { stroke-dashoffset: 0; stroke-dasharray: 6000; }
}

.snp-line-gradient {
    stroke: #f43f5e !important; 
    animation: drawLine 3s ease-in-out forwards, cosmicColorShift 5s linear infinite 0s !important;
}
.snp-line-gradient-secondary {
    stroke: #0ea5e9 !important; 
    animation: drawLine 3.5s ease-in-out forwards, cosmicColorShift 5s linear infinite 0s !important;
}
@keyframes cosmicColorShift {
    0% { filter: hue-rotate(0deg) drop-shadow(0 0 8px currentColor); }
    50% { filter: hue-rotate(180deg) drop-shadow(0 0 16px currentColor); }
    100% { filter: hue-rotate(360deg) drop-shadow(0 0 8px currentColor); }
}

/* Tabs Layout */
.snp-spheres-container-tabs {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    text-align: left;
}

.snp-tabs-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.snp-tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 10px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    outline: none;
}

.snp-tab-btn:hover {
    background: #f1f5f9;
    color: #334155;
}

.snp-tab-btn.active {
    color: var(--snp-primary);
    border-bottom-color: var(--snp-primary);
    background: #ffffff;
}

.snp-tab-badge {
    background: #e2e8f0;
    color: #475569;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.snp-tab-btn.active .snp-tab-badge {
    background: #ede9fe;
    color: var(--snp-primary);
}

.snp-tabs-content {
    padding: 30px;
    background: #ffffff;
}

.snp-tab-pane {
    display: none;
    animation: snpFadeIn 0.4s ease;
}

.snp-tab-pane.active {
    display: block;
}

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

.snp-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.snp-tab-header h3 {
    font-family: var(--snp-title-font);
    font-size: 2rem;
    color: #1e293b;
    margin: 0;
}

.snp-energy-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--snp-primary);
    background: #ede9fe;
    padding: 6px 14px;
    border-radius: 8px;
}

.snp-tab-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.snp-tab-img {
    width: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.snp-tab-text {
    flex: 1;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .snp-tab-body {
        flex-direction: column;
    }
    .snp-tab-img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .snp-tab-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Pricing Tiers */
.snp-pricing-tiers {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.snp-pricing-tiers h3 {
    text-align: center;
    font-family: var(--snp-title-font);
    font-size: 2rem;
    margin-bottom: 25px;
    color: #0f172a;
}

.snp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.snp-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.snp-pricing-card.snp-popular {
    border: 2px solid #8b5cf6;
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.3);
    transform: scale(1.02);
}

.snp-pricing-card.snp-popular:hover {
    transform: scale(1.04);
}

.snp-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.snp-pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.snp-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.snp-pricing-card p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
    height: 45px;
}

.snp-pricing-consultation {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.95rem;
}

/* Arcana Content Styling */
.snp-sphere-intro {
    margin-bottom: 15px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

.snp-accordion {
    margin-bottom: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.snp-accordion summary {
    padding: 10px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    cursor: pointer;
    background: #f1f5f9;
    list-style: none; /* Hide default arrow */
    position: relative;
    user-select: none;
    transition: background 0.2s;
}

.snp-accordion summary::-webkit-details-marker {
    display: none;
}

.snp-accordion summary:hover {
    background: #e2e8f0;
}

.snp-accordion[open] summary {
    border-bottom: 1px solid #e2e8f0;
}

/* Custom + / - icon for summary */
.snp-accordion summary::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    font-weight: bold;
    color: #64748b;
    line-height: 1;
}

.snp-accordion[open] summary::after {
    content: '−';
}

.snp-acc-content {
    padding: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #475569;
}

.snp-check {
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
}

.snp-accordion-plus .snp-check {
    color: #10b981; /* Green check for Plus */
}
.snp-accordion-plus summary {
    color: #065f46;
}

.snp-accordion-minus .snp-check {
    color: #ef4444; /* Red check for Minus */
}
.snp-accordion-minus summary {
    color: #991b1b;
}

@media (max-width: 600px) {
    .snp-input-section {
        flex-direction: column;
        align-items: center;
    }
    .snp-input-section input, #snp-calculate-btn {
        width: 100%;
    }
}
