        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            transition: background-color 0.3s, color 0.3s;
        }

        /* Tab Styles */
        .tabs {
            display: flex;
            justify-content: center;
            background-color: #222;
            border-radius: 8px 8px 0 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin: 20px;
            overflow: hidden;
            position: relative;
        }

        .tab {
            flex: 1;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            background-color: #333;
            color: white;
            transition: background-color 0.3s, transform 0.2s ease-in-out;
        }

        .tab:hover {
            background-color: #444;
            transform: translateY(-4px);
        }

        .tab.active {
            background-color: #007BFF;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
        }

        /* Astral Tab Breath */
        .tab:first-child.active {
            background: linear-gradient(to right, #2c3e50, #3498db);
            background-size: 400% 400%;
            animation: spaceAnimate 5s ease-in-out infinite;
        }
        
        
/* Occult Themes */
.astral-content {
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    color: #e0e0e0;
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    z-index: 1;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.25;
    }
}

/* Title flicker */
.glitch {
    font-size: 48px;
    font-weight: bold;
    color: #f5f5f5;
    position: relative;
    text-shadow: 2px 2px #bbb;
    animation: glitch-flicker 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    color: #e0e0e0;
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    animation: glitchTop 3s infinite linear alternate-reverse;
    color: #dcdcdc;
}

.glitch::after {
    animation: glitchBottom 2s infinite linear alternate-reverse;
    color: #ffffff;
}


@keyframes glitchTop {
    0% { clip: rect(0, 9999px, 0, 0); }
    20% { clip: rect(0, 9999px, 30px, 0); }
    40% { clip: rect(0, 9999px, 15px, 0); }
    60% { clip: rect(0, 9999px, 40px, 0); }
    80% { clip: rect(0, 9999px, 25px, 0); }
    100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes glitchBottom {
    0% { clip: rect(50px, 9999px, 70px, 0); }
    20% { clip: rect(60px, 9999px, 80px, 0); }
    40% { clip: rect(45px, 9999px, 65px, 0); }
    60% { clip: rect(55px, 9999px, 75px, 0); }
    80% { clip: rect(40px, 9999px, 60px, 0); }
    100% { clip: rect(50px, 9999px, 70px, 0); }
}

@keyframes glitch-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.6;
    }
}


/* Astral Content Layout */
.astral-content {
    text-align: center;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #e8e8e8;
}

/* Section Styles */
.astral-section {
    margin: 40px auto;
    max-width: 800px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,255,255,0.05);
}

/* Section Titles */
.astral-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Paragraphss */
.astral-section p, .astral-section ul, .astral-section ol {
    font-size: 18px;
    color: #d0d0d0;
}

/* Coercive Highlight */
.coercive {
    background: rgba(50, 0, 0, 0.5);
    border-left: 4px solid #a00;
}
.coercive blockquote {
    font-style: italic;
    margin: 15px auto;
    color: #f0c0c0;
}

/* Ritual Section */
.ritual {
    background: rgba(0, 0, 40, 0.5);
    border-left: 4px solid #44a;
}
.ritual ol {
    text-align: left;
    margin: 20px auto;
    padding-left: 30px;
}

/* Images */
.astral-img {
    margin-top: 20px;
    max-width: 70%;
    border-radius: 6px;
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    transition: transform 0.5s ease;
}
.astral-img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Final Warning */
.final-warning {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px #f00;
}

@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

        @keyframes spaceAnimate {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Content Section Styles */
        .content {
            display: none;
            background-color: #fff;
            padding: 40px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: opacity 0.3s ease-in-out;
            z-index: 1;
        }

        .content.active {
            display: block;
            opacity: 1;
        }

        /* General Content Styles */
        h2 {
            color: #333;
            font-size: 24px;
        }

        p {
            font-size: 16px;
            color: #555;
        }

        /* Astral Content Styling */

        .astral-content h2 {
            font-size: 36px;
            font-weight: bold;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
        }

        .astral-content p {
            font-size: 18px;
            color: #ddd;
            line-height: 1.5;
        }

        /* Astral Background Tab Open */
        body.astral-active {
            background-color: #000; /* Black background for space theme */
            color: white; /* White text color for contrast */
        }