body {
    margin: 0;
    background: #050505;
    background: url('../images/bg.webp') center/cover no-repeat fixed;
    background-attachment: fixed;
    color: #ddd;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
}

/* SMOKE CANVAS */
#smokeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ensure all content is above canvas */
.hero, .section, .footer {
    position: relative;
    z-index: 2;
}

.section {
    background: transparent;
}

/* HERO WITH YOUR BACKGROUND */
.hero {
    min-height: 75vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* LOGO */
.logo {
    max-width: 600px;
}

/* TAGLINE */
.tagline {
    font-family: 'Solitreo', serif;
    color: #7CFC00;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff99;
    border-top: 2px solid #00ff99;
    border-bottom: 2px solid #00ff99;
    padding: 15px 0;
    margin: 20px 25%;
    display: block;
}

/* INTRO TEXT */
.intro {
    max-width: 600px;
    margin: auto;
    color: #ccc;
}

/* 18 BADGE */
.badge-18 {
    display: block;
    border: 2px solid red;
    padding: 6px 15px;
    border-radius: 50px;
    color: red;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto 20px auto;
}

/* SECTION */
.section {
    padding: 20px 20px;
    background: none;
}

/* HEADINGS */
h2 {
    font-family: 'Solitreo', serif;
    color: #7CFC00;
    text-shadow: 0 0 10px #00ff99;
}

/* PANELS */
.panel {
    background: rgba(15,15,15,0.5);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s;
}

.panel-content {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 20px;
    align-items: center;
}

.panel-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-icon img {
    max-width: 60px;
    height: 60px;
    object-fit: contain;
}

.panel-text {
    text-align: left;
}

.panel-text h4 {
    margin: 0 0 10px 0;
    color: #7CFC00;
    transition: text-shadow 0.3s ease, letter-spacing 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.panel-text p {
    margin: 0;
    color: #ccc;
    transition: text-shadow 0.3s ease;
}

/* Icon Color Filters */
.movie-icon img {
    filter: invert(1) sepia(1) saturate(100) hue-rotate(130deg);
}

.game-icon img {
    filter: invert(1) sepia(1) saturate(100) hue-rotate(60deg);
}

.music-icon img {
    filter: invert(1) sepia(1) saturate(100) hue-rotate(130deg);
}

.chat-icon img {
    filter: invert(1) sepia(1) saturate(100) hue-rotate(60deg);
}

.gift-icon img {
    filter: invert(1) sepia(1) saturate(100) hue-rotate(130deg);
}

.weed-icon img {
    
}

.panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,255,150,0.5);
    border-color: #00ff99;
}

.panel:hover .panel-text h4 {
    text-shadow: 0 0 8px #7CFC00, 0 0 16px rgba(0,255,150,0.8), 0 0 24px rgba(0,255,150,0.5);
    letter-spacing: 1.5px;
}

.panel:hover .panel-text p {
    text-shadow: 0 0 5px rgba(124,252,0,0.6), 0 0 10px rgba(0,255,150,0.4);
}

/* CTA */
.cta-box {
    background: rgba(15,15,15,0.8);
    border: 3px solid #7CFC00;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(124,252,0,0.5), inset 0 0 20px rgba(124,252,0,0.1);
    position: relative;
    margin: 20px 0;
}

.cta-box::before,
.cta-box::after {
    content: "🌿";
    position: absolute;
    font-size: 2rem;
    color: #7CFC00;
}

.cta-box::before {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-box::after {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-box h3 {
    color: #7CFC00;
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: bold;
    text-shadow: 0 0 15px #7CFC00;
    font-family: 'Solitreo', serif;
}

.cta-box p {
    color: #ccc;
    font-size: 1rem;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.cta-btn {
    background: #7CFC00;
    color: black;
    font-size: 1.4rem;
    padding: 18px 60px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(124,252,0,0.6);
    position: relative;
}

.cta-btn::before {
    content: "💬 ";
}

.cta-btn:hover {
    background: #00ff99;
    box-shadow: 0 0 35px rgba(0,255,150,0.8);
    transform: scale(1.05);
    color: black;
}

.cta-subtext {
    color: #7CFC00;
    font-size: 0.85rem;
    margin-top: 20px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* FAQ SECTION */
.faq-section {
    background: none;
    margin-top: 60px;
}

/* CONTENT & COMMUNITY SECTION */
.content-community-section {
    margin-top: 80px;
    background: none;
}

.section-subtitle {
    color: #7CFC00;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.content-subheading {
    color: #7CFC00;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.content-list li {
    color: #ccc;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.content-list li:before {
    content: "🔥";
    position: absolute;
    left: 0;
}

/* FEATURED CONTENT BOX */
.featured-content-box {
    background: rgba(15,15,15,0.7);
    border: 2px solid #00ff99;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 0 25px rgba(0,255,150,0.3);
    transition: 0.3s;
    margin-top: 50px;
}

.featured-content-box:hover {
    box-shadow: 0 0 35px rgba(0,255,150,0.5);
    border-color: #7CFC00;
}

.highlight-box {
    background: rgba(124,252,0,0.1);
    border-left: 4px solid #7CFC00;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    color: #ccc;
}

.highlight-box p {
    margin: 0;
    line-height: 1.6;
}

/* VIDEO PLACEHOLDER */
.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 20px;;
}

.video-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124,252,0,0.1), rgba(0,255,150,0.1));
    border: 2px solid #00ff99;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.video-frame:hover {
    border-color: #7CFC00;
    box-shadow: 0 0 20px rgba(0,255,150,0.5);
}

.video-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.play-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px #7CFC00);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-content p {
    color: #7CFC00;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

/* DISCORD WIDGET */
.discord-widget {
    background: rgba(15,15,15,0.7);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,255,150,0.2);
}

.widget-header {
    background: linear-gradient(90deg, rgba(124,252,0,0.2), rgba(0,255,150,0.2));
    padding: 20px;
    border-bottom: 1px solid #222;
}

.widget-header h4 {
    color: #7CFC00;
    margin: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.widget-body {
    padding: 25px;
}

.member-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(100,100,100,0.3);
}

.member-stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: #ccc;
    font-weight: 600;
}

.stat-value {
    color: #7CFC00;
    font-size: 1.3rem;
    font-weight: bold;
}

.join-now-btn {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #7CFC00, #00ff99);
    color: black;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.join-now-btn:hover {
    background: linear-gradient(90deg, #00ff99, #7CFC00);
    box-shadow: 0 0 15px rgba(0,255,150,0.6);
    color: black;
}

/* SEO CONTENT SECTION */
.seo-content-section {
    margin-top: 80px;
    margin-bottom: 60px;
    background: none;
}

.content-card {
    background: rgba(15,15,15,0.5);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s;
    height: 100%;
}

.content-card:hover {
    border-color: #00ff99;
    box-shadow: 0 0 15px rgba(0,255,150,0.3);
    transform: translateY(-5px);
}

.content-card h3 {
    color: #7CFC00;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.content-card p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* KEYWORDS SECTION */
.seo-keywords {
    background: rgba(15,15,15,0.5);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.keyword-tag {
    background: linear-gradient(135deg, rgba(124,252,0,0.15), rgba(0,255,150,0.15));
    border: 1px solid #00ff99;
    color: #7CFC00;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    cursor: default;
}

.keyword-tag:hover {
    background: linear-gradient(135deg, rgba(124,252,0,0.25), rgba(0,255,150,0.25));
    box-shadow: 0 0 10px rgba(0,255,150,0.4);
}

@media (max-width: 768px) {
    .keywords-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .video-placeholder {
        margin-bottom: 30px;
    }
}

.accordion {
    --bs-accordion-bg: rgba(15,15,15,0.5);
    --bs-accordion-border-color: #222;
    --bs-accordion-btn-active-bg: rgba(124,252,0,0.1);
    --bs-accordion-btn-active-border-color: #00ff99;
}

.accordion-item {
    background: rgba(15,15,15,0.5);
    border: 1px solid #222;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.accordion-item:hover {
    border-color: #00ff99;
    box-shadow: 0 0 15px rgba(0,255,150,0.3);
}

.accordion-button {
    background: rgba(15,15,15,0.5);
    color: #7CFC00;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: rgba(124,252,0,0.05);
    color: #00ff99;
    box-shadow: inset 0 0 10px rgba(0,255,150,0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 10px rgba(0,255,150,0.4);
    border-color: #00ff99;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237CFC00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(15,15,15,0.7);
    color: #ccc;
    border-top: 1px solid #222;
    padding: 20px;
    font-family: 'Rajdhani', sans-serif;
}

/* STAFF SECTION */
.staff-section {
    margin-top: 80px;
    margin-bottom: 60px;
    background: none;
}

.staff-container {
    margin-top: 40px;
}

.staff-category {
    margin-bottom: 60px;
}

.staff-category-title {
    color: #7CFC00;
    font-family: 'Solitreo', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 35px;
    text-shadow: 0 0 10px #7CFC00;
    letter-spacing: 2px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.staff-card {
    background: rgba(15,15,15,0.6);
    border: 2px solid #00ff99;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* MALE STAFF - GREEN */
.staff-card.staff-male {
    border-color: #7CFC00;
}

.staff-card.staff-male:hover {
    background: rgba(15,15,15,0.8);
    border-color: #00ff99;
    box-shadow: 0 0 25px rgba(0,255,150,0.5);
    transform: translateY(-8px);
}

/* FEMALE STAFF - PINK/PURPLE */
.staff-card.staff-female {
    border-color: #FF1493;
}

.staff-card.staff-female:hover {
    background: rgba(15,15,15,0.8);
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255,20,147,0.5);
    transform: translateY(-8px);
}

.staff-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black;
    font-size: 1.3rem;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0,255,150,0.6);
}

.staff-male-avatar {
    background: linear-gradient(135deg, #7CFC00, #00ff99);
    box-shadow: 0 0 15px rgba(0,255,150,0.6);
}

.staff-female-avatar {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    box-shadow: 0 0 15px rgba(255,20,147,0.6);
}

.staff-card h4 {
    color: #7CFC00;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}

.staff-card.staff-female h4 {
    color: #FF1493;
}

.staff-card:hover h4 {
    text-shadow: 0 0 10px #7CFC00, 0 0 20px rgba(0,255,150,0.6);
}

.staff-card.staff-female:hover h4 {
    text-shadow: 0 0 10px #FF1493, 0 0 20px rgba(255,20,147,0.6);
}

/* REVIEWS SECTION */
.reviews-section {
    margin-top: 80px;
    margin-bottom: 60px;
    background: none;
}

.review-card {
    background: rgba(15,15,15,0.6);
    border: 2px solid #00ff99;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    background: rgba(15,15,15,0.8);
    border-color: #7CFC00;
    box-shadow: 0 0 25px rgba(0,255,150,0.5);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7CFC00, #00ff99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black;
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(0,255,150,0.6);
    flex-shrink: 0;
}

.review-info h4 {
    margin: 0 0 5px 0;
    color: #7CFC00;
    font-size: 1.1rem;
    font-weight: bold;
}

.review-stars {
    font-size: 0.9rem;
}

.review-text {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    font-style: italic;
}

/* RULES & CODE OF CONDUCT SECTION */
.rules-section {
    margin-top: 80px;
    margin-bottom: 60px;
    background: none;
}

.rules-content {
    background: rgba(15,15,15,0.6);
    border: 2px solid #00ff99;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(0,255,150,0.2);
}

.rules-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.rule-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 15px;
    background: rgba(124,252,0,0.05);
    border-left: 3px solid #7CFC00;
    border-radius: 8px;
    transition: 0.3s;
}

.rule-item:hover {
    background: rgba(124,252,0,0.1);
    border-left-color: #00ff99;
}

.rule-number {
    background: linear-gradient(135deg, #7CFC00, #00ff99);
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rule-item p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

.rule-item strong {
    color: #7CFC00;
}

.rule-item a {
    color: #00ff99;
    text-decoration: none;
    transition: 0.3s;
}

.rule-item a:hover {
    color: #7CFC00;
    text-decoration: underline;
}

.rules-footer {
    background: rgba(0,255,150,0.05);
    border: 1px solid rgba(0,255,150,0.3);
    border-radius: 8px;
    padding: 25px;
}

.rules-footer h4 {
    color: #7CFC00;
    margin-top: 0;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #7CFC00;
}

.rules-footer p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.rules-footer p:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #00ff99;
}

/* ACHIEVEMENTS SECTION */
.achievements-section {
    margin-top: 80px;
    background: none;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.achievement-card {
    background: rgba(15,15,15,0.6);
    border: 2px solid #7CFC00;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.achievement-card:hover {
    background: rgba(15,15,15,0.8);
    border-color: #00ff99;
    box-shadow: 0 0 25px rgba(0,255,150,0.5);
    transform: translateY(-8px);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.achievement-card h4 {
    color: #7CFC00;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.achievement-winner {
    color: #00ff99;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px 0;
}

.achievement-description {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* BOT COMMANDS SECTION */
.bot-commands-section {
    margin-top: 80px;
    background: none;
}

.intro-text {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.commands-content {
    background: rgba(15,15,15,0.6);
    border: 2px solid #00ff99;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(0,255,150,0.2);
}

.command-showcase {
    background: rgba(0,255,150,0.05);
    border: 1px solid rgba(0,255,150,0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.command-item {
    margin: 20px 0;
}

.command-syntax {
    background: linear-gradient(90deg, rgba(124,252,0,0.2), rgba(0,255,150,0.2));
    border-left: 4px solid #7CFC00;
    color: #7CFC00;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.command-description {
    color: #ccc;
    margin: 10px 0;
    line-height: 1.5;
}

.command-example {
    color: #00ff99;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    margin: 10px 0;
}

.command-divider {
    color: #7CFC00;
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.1rem;
}

.commands-info {
    background: rgba(124,252,0,0.05);
    border: 1px solid rgba(124,252,0,0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.commands-info p {
    color: #ccc;
    margin: 10px 0;
    line-height: 1.6;
}

.commands-info strong {
    color: #7CFC00;
}

.commands-info ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 0 0;
}

.commands-info li {
    color: #ccc;
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.commands-info li:before {
    content: "🎵";
    position: absolute;
    left: 0;
}

/* VERIFICATION STEPS SECTION */
.verification-section {
    margin-top: 60px;
    background: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7CFC00, #00ff99, #7CFC00);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .steps-container::before {
        display: none;
    }
}

.step-card {
    background: rgba(15, 15, 15, 0.5);
    border: 2px solid #7CFC00;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    z-index: 1;
}

.step-card:hover {
    background: linear-gradient(135deg, rgba(124,252,0,0.15), rgba(0,255,150,0.15));
    border-color: #00ff99;
    box-shadow: 0 0 30px rgba(0,255,150,0.4), inset 0 0 20px rgba(124,252,0,0.1);
    transform: translateY(-10px);
}

.step-number {
    background: linear-gradient(135deg, #7CFC00, #00ff99);
    color: black;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(124,252,0,0.5);
}

.step-card h3 {
    color: #7CFC00;
    font-size: 1.4rem;
    margin: 15px 0;
    font-weight: bold;
    text-shadow: 0 0 10px #7CFC00;
}

.step-card p {
    color: #ccc;
    line-height: 1.7;
    margin: 15px 0 20px 0;
    font-size: 1.5rem;
}

.step-icon {
    font-size: 3rem;
    margin-top: 20px;
    animation: float 3s ease-in-out infinite;
}
}

.staff-tagline {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    color: #666;
}