:root {
    --plasma-primary: #D00265;    /* Electric Magenta */
    --plasma-secondary: #FF4081;   /* Hot Pink */
    --plasma-accent: #9C27B0;      /* Deep Purple */
    --plasma-glow: #FF1493;        /* Deep Pink */
    --plasma-background: #1A1A1A;  /* Dark Background */
    --plasma-text: #FFFFFF;        /* White Text */
    --plasma-energy: #FF6B6B;      /* Energy Red */
}

.heroPlasma {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, 
        var(--plasma-primary) 0%, 
        var(--plasma-secondary) 50%,
        var(--plasma-accent) 100%);
    background-size: 200% 200%;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: plasmaFlow 15s ease infinite;
}

.heroPlasma::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, 
            rgba(255, 20, 147, 0.4),
            transparent 50%),
        radial-gradient(circle at 70% 30%, 
            rgba(156, 39, 176, 0.4),
            transparent 50%);
    filter: blur(30px);
    opacity: 0.7;
    animation: plasmaGlow 8s ease infinite alternate;
    pointer-events: none;
}

.heroPlasma::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(157, 0, 255, 0.7),  /* Vivid Violet */
        rgba(255, 69, 0, 0.7)    /* Neon Orange-Red */
    );
    z-index: 1;
}

.heroPlasma .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--plasma-text);
    width: 90%;
    max-width: 1200px;
    padding: 3rem;
    margin: 0 auto;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    animation: fadeIn 1s ease-out;
}

.heroPlasma .hero-content h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.heroPlasma .hero-content p {
    font-size: clamp(1rem, 2vw, 2rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.heroPlasma .hero-content h2,
.heroPlasma .hero-content p {
    color: var(--plasma-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.heroPlasma .cta-btn {
    animation: fadeIn 1s ease-out 1s backwards;
}

/* ...existing animations... */

.property-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--plasma-glow);
    color: var(--plasma-text);
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(189, 0, 255, 0.15),
        rgba(255, 69, 0, 0.15));
    z-index: 0;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--plasma-glow);
}

.property-card h3 {
    color: var(--plasma-secondary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    position: relative;
    z-index: 1;
}

.property-card p {
    color: var(--plasma-text);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.property-card p,
.property-card ul li,
.application-card p,
.application-card ul li,
.phenomenon-card p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section {
    background: transparent;
    padding: 4rem 2rem;
    margin: 2rem auto;
}

.cta-btn {
    background: var(--plasma-accent);
    color: var(--plasma-text);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.cta-btn:hover {
    background: var(--plasma-glow);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes plasmaGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

@keyframes plasmaFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.intro-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(189, 0, 255, 0.2);
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.intro-text {
    flex: 1;
    padding-right: 2rem;
    color: var(--plasma-text);
}

.intro-text h2 {
    color: var(--plasma-secondary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--plasma-glow);
}

.intro-text p,
.intro-text ul {
    color: var(--plasma-text);
}

.intro-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--plasma-text);
}

.intro-text ul li::before {
    content: '⚡'; /* Lightning bolt for plasma */
    position: absolute;
    left: 0;
    color: var(--plasma-energy);
}

.intro-text p,
.intro-text ul li {
    color: white;
}

.intro-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px; /* Added max-width */
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

.feature-image {
    width: 100%;
    max-width: 350px; /* Reduced from default */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(189, 0, 255, 0.3);
    transition: transform 0.3s ease;
    background: transparent;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.properties-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(208, 2, 101, 0.2);
}

.properties-container h2 {
    color: var(--plasma-accent);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(189, 0, 255, 0.15),
        rgba(255, 69, 0, 0.15));
    z-index: 0;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(189, 0, 255, 0.3);
}

.property-card h3 {
    position: relative;
    color: var(--plasma-accent);
    margin-bottom: 1rem;
    z-index: 1;
}

.property-card p {
    position: relative;
    color: var(--plasma-text);
    z-index: 1;
}

.application-card h3,
.phenomenon-card h3 {
    color: var(--plasma-accent);
    text-shadow: 0 0 8px var(--plasma-glow);
}

.applications-container, 
.phenomena-container {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.application-card,
.phenomenon-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--plasma-energy);
}

.application-card:hover,
.phenomenon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--plasma-energy);
}

body {
    background: var(--plasma-background);
}

@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .intro-text {
        padding-right: 0;
    }

    .intro-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-card,
    .application-card,
    .phenomenon-card {
        margin-bottom: 1.5rem;
    }

    .heroPlasma {
        height: 60vh;
    }
}

/* Additional Plasma-specific Styling */
.content-section h2 {
    color: var(--plasma-secondary);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px var(--plasma-glow);
}

.content-section h2 {
    color: var(--plasma-secondary);
    text-shadow: 0 0 15px var(--plasma-glow);
}
