* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0E0E0F 0%, #0A0A0B 50%, #060608 100%);
    color: #F5F5DC;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    overflow-x: hidden;
}

/* Fire Sparks */
.fire-spark {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: sparkRise linear forwards;
}

.fire-spark.orange {
    background: radial-gradient(circle, #FFD36A 0%, #FF6A00 100%);
    box-shadow: 0 0 8px 2px rgba(255, 106, 0, 0.4), 0 0 12px 3px rgba(255, 211, 106, 0.3);
}

.fire-spark.blue {
    background: radial-gradient(circle, #87CEEB 0%, #0066FF 100%);
    box-shadow: 0 0 8px 2px rgba(0, 102, 255, 0.4), 0 0 12px 3px rgba(135, 206, 235, 0.3);
}

@keyframes sparkRise {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }

    20% {
        opacity: 1;
        transform: translateY(-25vh) translateX(calc(var(--drift) * 0.2)) scale(1.1);
    }

    50% {
        opacity: 0.9;
        transform: translateY(-60vh) translateX(calc(var(--drift) * 0.5)) scale(0.9);
    }

    80% {
        opacity: 0.6;
        transform: translateY(-90vh) translateX(calc(var(--drift) * 0.8)) scale(0.7);
    }

    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(var(--drift)) scale(0.5);
    }
}

/* Rocket Fire Footer */
.rocket-fire {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(to top, #0E0E0F 0%, transparent 100%);
}

.fire-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.flame {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 80px;
    background: linear-gradient(to top, #FFD36A 0%, #FF9F1C 20%, #FF6A00 40%, #FF3D00 60%, #E10600 80%, transparent 100%);
    border-radius: 50% 50% 0 0;
    animation: flameFlicker 0.3s infinite alternate;
    filter: blur(2px);
}

.flame:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.flame:nth-child(2) {
    left: 30%;
    animation-delay: 0.1s;
    height: 100px;
    background: linear-gradient(to top, #FFD36A 0%, #FF9F1C 20%, #FF6A00 40%, #FF3D00 60%, #0066FF 80%, #003399 95%, transparent 100%);
}

.flame:nth-child(3) {
    left: 40%;
    animation-delay: 0.2s;
    height: 90px;
}

.flame:nth-child(4) {
    left: 50%;
    animation-delay: 0s;
    height: 110px;
    background: linear-gradient(to top, #FFD36A 0%, #FF9F1C 20%, #FF6A00 40%, #FF3D00 60%, #0066FF 80%, #003399 95%, transparent 100%);
}

.flame:nth-child(5) {
    left: 60%;
    animation-delay: 0.15s;
    height: 95px;
}

.flame:nth-child(6) {
    left: 70%;
    animation-delay: 0.1s;
    height: 100px;
    background: linear-gradient(to top, #FFD36A 0%, #FF9F1C 20%, #FF6A00 40%, #FF3D00 60%, #0066FF 80%, #003399 95%, transparent 100%);
}

.flame:nth-child(7) {
    left: 80%;
    animation-delay: 0.05s;
}

@keyframes flameFlicker {
    0% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.9;
    }

    100% {
        transform: scaleY(1.15) scaleX(0.95);
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-up.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Light Mode - Black backgrounds become beige, beige text becomes black */
body.light-mode {
    background: linear-gradient(135deg, #F5F5DC 0%, #E6E6DC 50%, #D4D4C8 100%);
    color: #000000;
}

body.light-mode .navbar {
    background: rgba(245, 245, 220, 0.95);
}

body.light-mode .modal-content {
    background-color: #F5F5DC;
    color: #000000;
}

body.light-mode .modal-content input,
body.light-mode .modal-content select,
body.light-mode .modal-content textarea {
    background: rgba(255, 106, 0, 0.05);
    color: #000000;
}

body.light-mode .modal-content input::placeholder,
body.light-mode .modal-content textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .team-member,
body.light-mode .mentor-card,
body.light-mode .apply-option,
body.light-mode .objective,
body.light-mode .story-section,
body.light-mode .success-stories,
body.light-mode .blog-empty,
body.light-mode .blog-subscribe,
body.light-mode .contact-item,
body.light-mode .rules-section,
body.light-mode .purpose-item,
body.light-mode .group-guidelines,
body.light-mode .partnership-cta,
body.light-mode .footer {
    background: rgba(255, 106, 0, 0.05);
    color: #000000;
}

body.light-mode .member-contact,
body.light-mode .story h4,
body.light-mode .about-text p,
body.light-mode .stat-label,
body.light-mode .hero-subtitle {
    color: #000000;
}

body.light-mode h3,
body.light-mode h4,
body.light-mode .social-media-section h4,
body.light-mode .policy-links h3,
body.light-mode .group-guidelines h4,
body.light-mode .rules-section h3,
body.light-mode .group-purposes h3,
body.light-mode .purpose-item h4,
body.light-mode .preview-item h4,
body.light-mode .blog-subscribe h3,
body.light-mode .blog-subscribe h4,
body.light-mode .blog-empty h2,
body.light-mode .blog-empty h3,
body.light-mode .contact-item h4 {
    color: #000000 !important;
}

body.light-mode .purpose-item p,
body.light-mode .group-guidelines li,
body.light-mode .rules-section li,
body.light-mode .purpose-item p,
body.light-mode .contact-item p {
    color: #333333 !important;
}

.fire-text {
    background: linear-gradient(90deg, #FFD36A 0%, #FF9F1C 20%, #FF6A00 40%, #FF3D00 60%, #E10600 75%, #0066FF 90%, #003399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.35), 0 0 15px rgba(0, 102, 255, 0.25);
    animation: fireGlow 3s ease-in-out infinite alternate;
}

@keyframes fireGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 122, 0, 0.35), 0 0 15px rgba(0, 102, 255, 0.25);
    }

    100% {
        text-shadow: 0 0 35px rgba(255, 122, 0, 0.7), 0 0 25px rgba(0, 102, 255, 0.5), 0 0 15px rgba(0, 51, 153, 0.3);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(14, 14, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 5000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #F5F5DC;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

body.light-mode .nav-menu a {
    color: #000000;
}

.nav-menu a:hover {
    background: linear-gradient(90deg, #FFD36A 0%, #FF9F1C 30%, #FF6A00 55%, #FF3D00 75%, #E10600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(255, 106, 0, 0.2);
    transform: scale(1.1);
}

.theme-toggle i {
    color: #FF6A00;
    font-size: 1.2rem;
}

.language-selector select {
    padding: 0.5rem 1rem;
    background: rgba(255, 106, 0, 0.1);
    color: #F5F5DC;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

body.light-mode .language-selector select {
    color: #000000;
}

.language-selector select:hover {
    background: rgba(255, 106, 0, 0.2);
}

.language-selector select option {
    background: #1a1a1b;
    color: #F5F5DC;
}

body.light-mode .language-selector select option {
    background: #F5F5DC;
    color: #000000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F5F5DC;
    margin: 3px 0;
    transition: 0.3s;
}

body.light-mode .hamburger span {
    background: #000000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at 30% 40%, rgba(255, 122, 0, 0.12) 0%, rgba(0, 102, 255, 0.08) 35%, rgba(0, 51, 153, 0.04) 60%, transparent 80%);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #F5F5DC;
}

body.light-mode .hero-subtitle {
    color: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #F5F5DC;
}

body.light-mode .stat-label {
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(90deg, #FFD36A 0%, #FF9F1C 30%, #FF6A00 55%, #FF3D00 75%, #E10600 100%);
    color: #F5F5DC;
}

body.light-mode .btn-primary {
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4), 0 5px 15px rgba(0, 102, 255, 0.2);
    animation: buttonGlow 1s ease-in-out;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4), 0 5px 15px rgba(0, 102, 255, 0.2);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 122, 0, 0.6), 0 8px 20px rgba(0, 102, 255, 0.3);
    }
}

.btn-secondary {
    background: transparent;
    color: #F5F5DC;
    border: 2px solid #FF6A00;
}

body.light-mode .btn-secondary {
    color: #000000;
}

.btn-secondary:hover {
    background: #FF6A00;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

section:first-of-type {
    padding-top: 6rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #F5F5DC;
}

body.light-mode .about-text p {
    color: #000000;
}

.objectives {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objective {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FF6A00;
}

.objective i {
    font-size: 1.5rem;
    color: #FF6A00;
}

.success-stories {
    background: rgba(255, 106, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.success-stories h3 {
    margin-bottom: 1.5rem;
    color: #FF6A00;
}

.story {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.story:last-child {
    border-bottom: none;
}

.story h4 {
    color: #FFD36A;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team {
    background: rgba(255, 106, 0, 0.02);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(0, 102, 255, 0.03));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6A00, #FFD36A);
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid #FF6A00;
}

.member-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    color: #FF6A00;
    transition: all 0.3s;
}

.member-links a:hover {
    background: #FF6A00;
    color: #F5F5DC;
    transform: translateY(-2px);
}

body.light-mode .member-links a:hover {
    color: #000000;
}

.member-contact {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #F5F5DC;
}

body.light-mode .member-contact {
    color: #000000;
}

.member-contact p {
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.member-contact i {
    color: #FF6A00;
    width: 16px;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    font-weight: bold;
    margin-bottom: 1rem;
}

.mentors-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.mentor-card {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(0, 102, 255, 0.03));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s;
}

.mentor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.mentor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #FF6A00;
}

.mentor-role {
    color: #FFD36A;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

body.light-mode .mentor-role {
    color: #FF6A00 !important;
}

body.light-mode .role {
    color: #FF6A00 !important;
}

.mentor-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mentor-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    color: #FF6A00;
    transition: all 0.3s;
}

.mentor-links a:hover {
    background: #FF6A00;
    color: #F5F5DC;
    transform: translateY(-2px);
}

body.light-mode .mentor-links a:hover {
    color: #000000;
}

.hidden-mentor {
    display: none;
}

.mentors-actions {
    text-align: center;
    margin-top: 2rem;
}

.team-actions {
    text-align: center;
    margin-top: 2rem;
}

.hidden-team {
    display: none;
}

.read-more-btn {
    margin-top: 1rem;
}

/* Mentors Section */
.mentors {
    background: rgba(255, 106, 0, 0.02);
}

/* Blog Section */
.blog {
    background: rgba(0, 102, 255, 0.02);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(0, 102, 255, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.blog-empty i {
    font-size: 4rem;
    color: #FF6A00;
    margin-bottom: 1.5rem;
}

.blog-empty h2,
.blog-empty h3 {
    color: #FFD36A;
    margin-bottom: 1rem;
}

.blog-empty p {
    font-size: 1.1rem;
    color: #F5F5DC;
    margin-bottom: 2rem;
}

body.light-mode .blog-empty p {
    color: #000000;
}

.blog-subscribe {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.blog-subscribe h3,
.blog-subscribe h4 {
    color: #FFD36A;
    margin-bottom: 1rem;
}

.blog-subscribe form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-subscribe input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 106, 0, 0.05);
    color: #F5F5DC;
    font-size: 1rem;
}

body.light-mode .blog-subscribe input {
    color: #000000;
}

.blog-subscribe input::placeholder {
    color: rgba(245, 245, 220, 0.6);
}

body.light-mode .blog-subscribe input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.blog-subscribe button {
    padding: 0.8rem 2rem;
}

/* Blog Preview Styles */
.blog-preview {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 106, 0, 0.2);
}

.blog-preview h3 {
    color: #FFD36A;
    text-align: center;
    margin-bottom: 2rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.preview-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s;
}

.preview-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.preview-item i {
    font-size: 2.5rem;
    color: #FF6A00;
    margin-bottom: 1rem;
}

.preview-item h4 {
    color: #FFD36A;
    margin-bottom: 0.5rem;
}

.preview-item p {
    font-size: 0.9rem;
    color: #F5F5DC;
}

body.light-mode .preview-item p {
    color: #000000;
}

/* Partners Section */
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    background: rgba(255, 106, 0, 0.05);
    border: 2px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
}

.partner-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

.partnership-cta {
    text-align: center;
    background: rgba(255, 106, 0, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 106, 0, 0.2);
}

.partnership-cta h3 {
    color: #FFD36A;
    margin-bottom: 1rem;
}

/* Apply Section */
.apply {
    background: rgba(255, 106, 0, 0.02);
}

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

.apply-option {
    background: rgba(255, 106, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: transform 0.3s;
}

.apply-option:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.apply-option i {
    font-size: 3rem;
    color: #FF6A00;
    margin-bottom: 1rem;
}

.apply-option h3 {
    color: #FFD36A;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-compact {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FF6A00;
}

.contact-item a {
    color: #FFD36A;
    text-decoration: none;
}

.social-media-section {
    text-align: center;
}

.social-media-section h4 {
    color: #FFD36A;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    color: #FF6A00;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #FF6A00;
    color: #F5F5DC;
    transform: translateY(-3px);
}

body.light-mode .social-icons a:hover {
    color: #000000;
}

.action-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-links button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Guidelines Section */
.guidelines {
    background: rgba(255, 106, 0, 0.02);
}

.guidelines-content {
    display: grid;
    gap: 3rem;
}

.rules-section {
    background: rgba(255, 106, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF6A00;
}

.rules-section h3 {
    color: #FFD36A;
    margin-bottom: 1.5rem;
}

.rules-section ol {
    margin-left: 1.5rem;
}

.rules-section li {
    margin-bottom: 1rem;
    color: #F5F5DC;
}

body.light-mode .rules-section li {
    color: #000000;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.purpose-item {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(0, 102, 255, 0.03));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s;
}

.purpose-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.15), 0 4px 12px rgba(0, 102, 255, 0.2);
}

.purpose-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid #0066FF;
    display: block;
}

.group-with-logo {
    text-align: center;
}

.purpose-item h4 {
    color: #FFD36A;
    margin-bottom: 0.5rem;
}

.group-guidelines {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.group-guidelines h4 {
    color: #FFD36A;
    margin-bottom: 1rem;
}

.group-guidelines ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.group-guidelines li {
    margin-bottom: 0.5rem;
    color: #F5F5DC;
}

body.light-mode .group-guidelines li {
    color: #000000;
}

.policy-links {
    text-align: center;
}

.policy-links h3 {
    color: #FFD36A;
    margin-bottom: 1.5rem;
}

.policy-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.story-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid #FF6A00;
}

.story-section h3 {
    color: #FFD36A;
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1b;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #FF6A00;
}

.modal-content h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 106, 0, 0.05);
    color: #F5F5DC;
    font-size: 1rem;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(245, 245, 220, 0.6);
}

.modal-content textarea {
    min-height: 100px;
    resize: vertical;
}

.policy-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.policy-content {
    line-height: 1.6;
}

.policy-content h4 {
    color: #FFD36A;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #F5F5DC;
}

body.light-mode .policy-content p {
    color: #000000;
}

/* Footer */
.footer {
    background: rgba(255, 106, 0, 0.05);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 106, 0, 0.1);
    position: relative;
    z-index: 10;
}

.nav-menu a.active {
    background: linear-gradient(90deg, #FFD36A 0%, #FF9F1C 30%, #FF6A00 55%, #FF3D00 75%, #E10600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6A00, #FF3D00);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
    z-index: 10000;
    transition: all 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 106, 0, 0.6);
}

#chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #1a1a1b;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transition: all 0.3s;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

body.light-mode #chatbot-container {
    background: #F5F5DC;
    border: 1px solid rgba(255, 106, 0, 0.3);
}

#chatbot-container.chatbot-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.chatbot-header {
    padding: 1rem;
    background: linear-gradient(135deg, #FF6A00, #FF3D00);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    flex-direction: column;
    color: white;
}

.chatbot-title .fire-text {
    font-weight: bold;
    font-size: 1.1rem;
    -webkit-text-fill-color: white;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-message {
    display: flex;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    word-wrap: break-word;
    white-space: pre-line;
}

.user-message .message-content {
    background: linear-gradient(135deg, #FF6A00, #FF3D00);
    color: white;
    border-radius: 12px 12px 0 12px;
}

.bot-message .message-content {
    background: rgba(255, 106, 0, 0.1);
    color: #F5F5DC;
    border-radius: 12px 12px 12px 0;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

body.light-mode .bot-message .message-content {
    background: rgba(255, 106, 0, 0.05);
    color: #000;
}

.chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input-area input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 106, 0, 0.05);
    color: #F5F5DC;
    outline: none;
}

body.light-mode .chatbot-input-area input {
    color: #000;
    background: rgba(255, 106, 0, 0.05);
}

.chatbot-input-area input::placeholder {
    color: rgba(245, 245, 220, 0.5);
}

body.light-mode .chatbot-input-area input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.chatbot-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #FF6A00, #FF3D00);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #chatbot-container {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 90px;
    }

    .chatbot-toggle {
        right: 20px;
        bottom: 20px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(14, 14, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 4999;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    body.light-mode .nav-menu {
        background-color: rgba(245, 245, 220, 0.98);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-controls {
        display: flex;
        margin-right: 10px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .theme-toggle i {
        font-size: 1rem;
    }

    .language-selector select {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .contact-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mentors-grid {
        grid-template-columns: 1fr;
    }

    .mentor-card {
        padding: 1.5rem;
    }

    .partners-logos {
        gap: 2rem;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .apply-option i {
        font-size: 2.5rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .story-section {
        padding: 1.5rem;
    }

    .group-guidelines {
        padding: 1rem;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .policy-buttons {
        flex-direction: column;
        align-items: center;
    }

    .policy-modal {
        width: 95%;
        max-height: 90vh;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .blog-subscribe form {
        flex-direction: column;
    }

    .blog-subscribe input {
        min-width: 100%;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1rem;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
    }

    .theme-toggle i {
        font-size: 0.9rem;
    }

    .language-selector select {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .apply-option i {
        font-size: 2rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   NAV DROPDOWN
   ========================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a::after {
    content: ' ▾';
    font-size: 0.7em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14, 14, 15, 0.97);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    z-index: 1001;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.15), 0 0 60px rgba(255, 106, 0, 0.05);
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #F5F5DC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(255, 106, 0, 0.15);
    color: #FF6A00;
    padding-left: 25px;
}

/* ==========================================
   AMBASSADORS & SCOUTS SECTION
   ========================================== */
.ambassadors {
    padding: 80px 0;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: rgba(245, 245, 220, 0.7);
    max-width: 700px;
    margin: -20px auto 40px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Monthly Honours Cards */
.monthly-honours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.honour-card {
    background: linear-gradient(145deg, rgba(255, 106, 0, 0.08) 0%, rgba(14, 14, 15, 0.9) 40%, rgba(255, 211, 106, 0.05) 100%);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.honour-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF6A00, #FFD36A, #FF6A00, #FFD36A);
    background-size: 400% 400%;
    border-radius: 21px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0.2;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.5;
    }
}

.honour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.2);
}

.scout-of-month::before {
    background: linear-gradient(45deg, #0066FF, #87CEEB, #0066FF, #87CEEB);
    background-size: 400% 400%;
    animation: borderGlow 4s ease infinite;
}

.honour-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ambassador-of-month .honour-badge {
    color: #FFD36A;
}

.ambassador-of-month .honour-badge i {
    color: #FFD36A;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 211, 106, 0.6));
}

.scout-of-month .honour-badge {
    color: #87CEEB;
}

.scout-of-month .honour-badge i {
    color: #87CEEB;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(135, 206, 235, 0.6));
}

/* Month Navigation */
.honour-month-nav,
.spotlight-month-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.month-arrow {
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.3);
    color: #FF6A00;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.month-arrow:hover {
    background: rgba(255, 106, 0, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.honour-month-label,
.spotlight-month-label {
    font-size: 1rem;
    color: rgba(245, 245, 220, 0.8);
    font-weight: 600;
    min-width: 140px;
    text-align: center;
}

/* Honour Profile */
.honour-profile,
.spotlight-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.honour-photo-wrapper,
.spotlight-photo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.honour-photo,
.spotlight-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 106, 0, 0.5);
    position: relative;
    z-index: 1;
}

.scout-of-month .honour-photo {
    border-color: rgba(0, 102, 255, 0.5);
}

.honour-glow,
.spotlight-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.3) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.scout-of-month .honour-glow {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
}

.honour-profile h3,
.spotlight-profile h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.honour-role,
.spotlight-role {
    color: rgba(245, 245, 220, 0.6);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.honour-achievement {
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

/* Ambassadors Subsection */
.ambassadors-subsection {
    margin-bottom: 50px;
}

.ambassadors-subsection h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.actions-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-see-more {
    background: transparent;
    color: #FF6A00;
    border: 2px solid #FF6A00;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-see-more:hover {
    background: #FF6A00;
    color: #0E0E0F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.ambassador-card {
    background: linear-gradient(145deg, rgba(255, 106, 0, 0.06) 0%, rgba(14, 14, 15, 0.95) 100%);
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.ambassador-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.15);
}

.scout-card {
    border-color: rgba(0, 102, 255, 0.15);
}

.scout-card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.ambassador-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 106, 0, 0.3);
    margin-bottom: 12px;
}

.scout-card .ambassador-photo {
    border-color: rgba(0, 102, 255, 0.3);
}

.ambassador-card h4 {
    font-size: 1.1rem;
    color: #F5F5DC;
    margin-bottom: 5px;
}

.ambassador-role {
    color: #FF6A00;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.scout-card .ambassador-role {
    color: #87CEEB;
}

.ambassador-desc {
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.85rem;
}

/* ==========================================
   COMMUNITY HIGHLIGHTS SECTION
   ========================================== */
.community-highlights {
    padding: 80px 0;
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

/* Engaged Member Spotlight */
.engaged-member-spotlight {
    background: linear-gradient(145deg, rgba(255, 106, 0, 0.08) 0%, rgba(14, 14, 15, 0.95) 50%, rgba(255, 211, 106, 0.04) 100%);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
}

.spotlight-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFD36A;
}

.spotlight-badge i {
    color: #FF6A00;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.5));
    animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.9;
    }
}

.spotlight-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.spotlight-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spotlight-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.spotlight-stat-label {
    font-size: 0.75rem;
    color: rgba(245, 245, 220, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Community Calendar */
.community-calendar-widget {
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.06) 0%, rgba(14, 14, 15, 0.95) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.calendar-header h3 {
    min-width: 160px;
    text-align: center;
    font-size: 1.2rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(245, 245, 220, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.1);
    margin-bottom: 8px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    color: rgba(245, 245, 220, 0.7);
    transition: all 0.2s ease;
    cursor: default;
}

.calendar-day.today {
    background: rgba(255, 106, 0, 0.3);
    color: #FFD36A;
    font-weight: 700;
    border: 1px solid rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
}

.calendar-day.has-event {
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FF6A00;
}

.calendar-day.empty {
    color: transparent;
}

.calendar-events {
    border-top: 1px solid rgba(255, 106, 0, 0.1);
    padding-top: 15px;
}

.calendar-events h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 106, 0, 0.05);
    border-left: 3px solid #FF6A00;
    border-radius: 0 8px 8px 0;
    transition: all 0.2s ease;
}

.event-item:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateX(3px);
}

.event-date {
    color: #FF6A00;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 50px;
}

.event-name {
    color: rgba(245, 245, 220, 0.8);
    font-size: 0.9rem;
}

.labour-day-event {
    border-left: 3px solid #FFD36A;
    background: linear-gradient(90deg, rgba(255, 211, 106, 0.1), rgba(255, 106, 0, 0.05));
}

.event-theme {
    margin-top: 0.5rem;
}

.event-theme p {
    font-size: 0.85rem;
    line-height: 1.6;
}

body.light-mode .event-theme em {
    color: #333333 !important;
}

.spotlight-achievement {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
}

.spotlight-achievement p {
    text-align: center;
    line-height: 1.5;
}

.spotlight-achievement i {
    color: #FFD36A;
    margin-right: 0.5rem;
}

body.light-mode .spotlight-achievement p {
    color: #333333 !important;
}

/* ==========================================
   RESPONSIVE - NEW SECTIONS
   ========================================== */
@media (max-width: 768px) {
    .monthly-honours {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .ambassadors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .spotlight-stats {
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        border: none;
        background: rgba(14, 14, 15, 0.95);
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        animation: none;
    }

    .dropdown-menu li a {
        padding: 8px 30px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ambassadors-grid {
        grid-template-columns: 1fr;
    }
}

/* Hidden Members */
.hidden-ambassador,
.hidden-scout {
    display: none !important;
}

.hidden-ambassador.show,
.hidden-scout.show {
    display: block !important;
    animation: fadeIn 0.5s ease forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot Floating Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6A00, #EE0979);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.6);
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FF6A00;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #FF6A00;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: #eee;
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #FF6A00, #EE0979);
    color: white;
    border-bottom-right-radius: 2px;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    color: white;
    outline: none;
}

.chatbot-input button {
    background: none;
    border: none;
    color: #FF6A00;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.2s;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

/* Scrollbar for chat */
.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 106, 0, 0.3);
    border-radius: 10px;
}

/* Small Mobile Responsiveness (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .monthly-honours {
        padding: 10px;
    }

    .honour-card {
        padding: 15px;
    }

    .chatbot-container {
        width: 280px;
        height: 400px;
        bottom: 70px;
        right: -10px;
    }
}

/* General Mobile Tweaks */
@media (max-width: 768px) {
    .monthly-honours {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   VOICE ASSISTANT STYLES
   ========================================== */

/* Voice mic button inside chat input */
.voice-mic-btn {
    background: none;
    border: none;
    color: #FF6A00;
    cursor: pointer;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}
.voice-mic-btn:hover { background: rgba(255,106,0,0.15); transform: scale(1.1); }

/* Listening pulse */
.voice-mic-btn.listening {
    background: rgba(255,106,0,0.15);
    color: #FF6A00;
    animation: micPulse 1s ease-in-out infinite;
}
@keyframes micPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,106,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,106,0,0); }
}

/* Processing spinner */
.voice-mic-btn.processing { color: #FFD36A; opacity: 0.7; }

/* Denied state */
.voice-mic-btn.denied { color: #ff5050; }

/* Voice status bar */
.voice-status {
    font-size: 0.75rem;
    color: #FF8C00;
    padding: 0 15px 6px;
    min-height: 18px;
    text-align: center;
    transition: opacity 0.3s;
}

/* Chat messages */
.chatbot-messages .message {
    margin: 8px 0;
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 85%;
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
}
.chatbot-messages .message.user {
    background: linear-gradient(135deg,#FF6A00,#FF8C00);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}
.chatbot-messages .message.bot {
    background: rgba(255,106,0,0.08);
    border: 1px solid rgba(255,106,0,0.15);
    color: #f0f0f0;
    border-bottom-left-radius: 4px;
}
body.light-mode .chatbot-messages .message.bot { background: rgba(255,106,0,0.06); color: #222; }

/* ==========================================
   ADMIN PANEL STYLES (global)
   ========================================== */

.admin-toolbar {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    background: #1a0a00;
    border: 1px solid rgba(255,106,0,0.4);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(255,106,0,0.25);
    flex-wrap: wrap;
}
.admin-badge { font-size: 0.75rem; font-weight: 700; color: #FF8C00; }
.admin-btn { padding: 6px 14px; border: none; border-radius: 7px; font-size: 0.82rem; font-weight: 700; cursor: pointer; background: rgba(255,106,0,0.2); color: #FF8C00; transition: all 0.2s; }
.admin-btn:hover { background: rgba(255,106,0,0.4); }
.admin-btn-danger { background: rgba(255,50,50,0.15); color: #ff5050; }
.admin-btn-danger:hover { background: rgba(255,50,50,0.3); }

.admin-modal-overlay {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center;
}
.admin-modal-box {
    background: #181818;
    border: 1px solid rgba(255,106,0,0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 480px;
    width: 95%;
    position: relative;
}
.admin-modal-wide { max-width: 640px; }
.admin-modal-close {
    position: absolute; top: 14px; right: 14px;
    background: none; border: none; color: #888;
    font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.admin-modal-close:hover { color: #fff; }
.admin-modal-box h3 { margin-bottom: 10px; }
.admin-modal-box input,
.admin-modal-box textarea,
.admin-modal-box select {
    width: 100%; padding: 10px 12px; margin: 8px 0 12px;
    background: #222; border: 1px solid rgba(255,106,0,0.2);
    border-radius: 8px; color: #eee; font-size: 0.9rem; box-sizing: border-box;
}
.admin-modal-box textarea { resize: vertical; }
.admin-form-grid label { display: block; font-size: 0.8rem; color: #888; margin-bottom: 4px; }
.admin-error { color: #ff5050; font-size: 0.85rem; margin-bottom: 10px; }

.admin-toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(30px);
    background: #222; border: 1px solid rgba(255,106,0,0.4);
    color: #eee; padding: 10px 24px; border-radius: 30px;
    font-size: 0.9rem; z-index: 99999; opacity: 0; transition: all 0.35s;
}
.admin-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.admin-card-actions {
    display: flex; gap: 6px; padding: 8px 16px;
    border-top: 1px solid rgba(255,106,0,0.1);
}
.admin-card-btn { padding: 4px 10px; border-radius: 5px; font-size: 0.75rem; font-weight: 600; cursor: pointer; border: none; }
.admin-card-btn.edit { background: rgba(0,150,255,0.2); color: #0096ff; }
.admin-card-btn.delete { background: rgba(255,50,50,0.2); color: #ff5050; }
/* ══════════════════════════════════════════
   SPACE STATION FOOTER
══════════════════════════════════════════ */
.space-footer-wrap{position:relative;overflow:hidden;margin-top:20px}

/* The station scene canvas */
#station-canvas{display:block;width:100%;height:260px;position:relative;z-index:2}

/* Moon surface base */
.moon-surface{
  position:relative;height:160px;
  background:linear-gradient(to bottom,transparent 0%,rgba(20,10,5,.6) 40%,#0a0604 100%);
  z-index:3;margin-top:-40px;overflow:hidden}
.moon-craters{position:absolute;inset:0;pointer-events:none}
.crater{position:absolute;border-radius:50%;border:1px solid rgba(255,106,0,.08)}

/* Launch pads */
.launch-platform{position:absolute;bottom:0;z-index:4;display:flex;flex-direction:column;align-items:center}
.pad-base{width:60px;height:8px;background:linear-gradient(135deg,#2a1500,#3d2000);
  border:1px solid rgba(255,106,0,.3);border-radius:3px}
.pad-legs{display:flex;gap:16px}
.pad-leg{width:3px;height:20px;background:rgba(255,106,0,.3);border-radius:1px}
.pad-light{width:8px;height:8px;border-radius:50%;background:#FF6A00;
  box-shadow:0 0 10px #FF6A00;animation:padBlink 1.2s ease-in-out infinite;margin-bottom:4px}
@keyframes padBlink{0%,100%{opacity:1;box-shadow:0 0 10px #FF6A00}50%{opacity:.1;box-shadow:none}}

/* Animated rockets on pads */
.pad-rocket{font-size:2.2rem;position:absolute;bottom:28px;animation:none;transition:all .4s ease;
  filter:drop-shadow(0 0 10px rgba(255,106,0,.5))}
.pad-rocket.launching{animation:padLaunch 4s ease-in forwards}
@keyframes padLaunch{
  0%{transform:translateY(0) scale(1);filter:drop-shadow(0 0 10px rgba(255,106,0,.5))}
  5%{transform:translateY(4px) scale(.98)} /* settle on ignition */
  15%{transform:translateY(-10px) scale(1.05);filter:drop-shadow(0 0 25px rgba(255,200,0,.9))}
  100%{transform:translateY(-350px) scale(.4);opacity:0;filter:drop-shadow(0 0 5px rgba(255,106,0,.3))}}
.pad-exhaust{position:absolute;bottom:20px;width:20px;height:0;
  background:linear-gradient(to bottom,rgba(255,200,0,.8),rgba(255,106,0,.4),transparent);
  border-radius:0 0 50% 50%;animation:none;transition:all .2s}
.pad-rocket.launching ~ .pad-exhaust{animation:exhaustGrow 4s ease-in forwards}
@keyframes exhaustGrow{0%{height:0;opacity:0}8%{height:30px;opacity:1}
  30%{height:60px;opacity:.8}100%{height:10px;opacity:0}}

/* Station building silhouettes */
.station-buildings{position:absolute;bottom:0;left:0;right:0;z-index:3;pointer-events:none}

/* Control tower */
.ctrl-tower{position:absolute;bottom:0;display:flex;flex-direction:column;align-items:center}
.tower-body{background:linear-gradient(to top,#1a0a00,#2d1500);
  border:1px solid rgba(255,106,0,.2);border-radius:4px 4px 0 0}
.tower-top{background:rgba(255,106,0,.15);border:1px solid rgba(255,106,0,.35);
  border-radius:4px 4px 0 0;display:flex;align-items:center;justify-content:center}
.tower-window{width:8px;height:6px;background:rgba(255,200,80,.6);border-radius:1px;
  animation:winFlicker 3s ease-in-out infinite}
@keyframes winFlicker{0%,100%{opacity:.9}45%{opacity:.2}50%{opacity:.9}55%{opacity:.3}}
.tower-antenna{width:2px;height:20px;background:rgba(255,106,0,.5);margin-bottom:0}
.antenna-blink{width:5px;height:5px;border-radius:50%;background:#FF3A00;
  margin:0 auto;animation:antBlink .8s ease-in-out infinite;box-shadow:0 0 8px #FF3A00}
@keyframes antBlink{0%,100%{opacity:1}50%{opacity:.05}}

/* Fuel tanks */
.fuel-tank{border-radius:40px 40px 6px 6px;
  background:linear-gradient(135deg,#1a0a00,#2d1500);
  border:1px solid rgba(255,106,0,.2);position:relative}
.tank-ring{position:absolute;left:0;right:0;height:3px;background:rgba(255,106,0,.15);border-radius:2px}
.tank-light{width:6px;height:6px;border-radius:50%;position:absolute;
  background:#00AAFF;box-shadow:0 0 8px #00AAFF;animation:tankBlink 2s ease-in-out infinite}

/* Hangar */
.hangar{background:linear-gradient(135deg,#120800,#200d00);
  border:1px solid rgba(255,106,0,.15);position:relative;overflow:hidden}
.hangar-door{position:absolute;bottom:0;left:50%;transform:translateX(-50%);
  background:rgba(255,106,0,.05);border:1px solid rgba(255,106,0,.2);
  animation:hangarDoor 8s ease-in-out infinite}
@keyframes hangarDoor{0%,60%{height:30%}70%,90%{height:70%}100%{height:30%}}
.hangar-light-strip{position:absolute;bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,200,0,.6),transparent);
  animation:stripScan 3s linear infinite}
@keyframes stripScan{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}

/* Comms dish */
.dish-wrap{position:absolute;display:flex;flex-direction:column;align-items:center}
.dish{animation:dishRotate 12s linear infinite}
@keyframes dishRotate{0%{transform:rotate(-30deg)}50%{transform:rotate(30deg)}100%{transform:rotate(-30deg)}}
.dish-signal{position:absolute;border-radius:50%;border:1px solid rgba(0,200,255,.2);
  animation:dishPing 2s ease-out infinite}
@keyframes dishPing{0%{width:0;height:0;opacity:.8;top:0;left:0}
  100%{width:50px;height:50px;opacity:0;top:-25px;left:-25px}}

/* Station logo strip */
.station-logo-strip{background:rgba(10,5,0,.8);border-top:1px solid rgba(255,106,0,.15);
  border-bottom:1px solid rgba(255,106,0,.08);padding:16px 0;text-align:center;
  position:relative;z-index:10}
.station-logo-strip .logo-text{font-size:.65rem;letter-spacing:.2em;
  text-transform:uppercase;color:rgba(255,106,0,.5)}

/* Footer content */
.footer-station-content{background:linear-gradient(to bottom,rgba(10,5,0,.95),#000);
  padding:40px 0 24px;position:relative;z-index:10}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand .brand-name{font-size:1.4rem;font-weight:700;color:#FFD36A;margin-bottom:10px;
  display:flex;align-items:center;gap:10px}
.footer-brand p{color:rgba(245,245,220,.45);font-size:.85rem;line-height:1.7;margin-bottom:20px}
.footer-social{display:flex;gap:12px}
.social-btn{width:36px;height:36px;border-radius:50%;
  background:rgba(255,106,0,.1);border:1px solid rgba(255,106,0,.2);
  display:flex;align-items:center;justify-content:center;
  color:rgba(245,245,220,.5);font-size:.85rem;
  transition:all .25s;text-decoration:none}
.social-btn:hover{background:rgba(255,106,0,.22);color:#FFD36A;
  transform:translateY(-3px);border-color:rgba(255,106,0,.5)}
.footer-col h4{font-size:.75rem;font-weight:700;text-transform:uppercase;
  letter-spacing:1.5px;color:rgba(255,106,0,.7);margin-bottom:16px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{color:rgba(245,245,220,.42);font-size:.85rem;
  text-decoration:none;transition:color .2s;display:flex;align-items:center;gap:6px}
.footer-col ul li a:hover{color:#FFD36A}
.footer-col ul li a::before{content:'›';color:rgba(255,106,0,.4)}
.footer-bottom{border-top:1px solid rgba(255,106,0,.08);padding-top:20px;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.footer-bottom p{color:rgba(245,245,220,.28);font-size:.78rem}
.footer-bottom a{color:#FF6A00;text-decoration:none}
.footer-bottom a:hover{color:#FFD36A}
.mission-badge{display:inline-flex;align-items:center;gap:6px;
  background:rgba(255,106,0,.08);border:1px solid rgba(255,106,0,.15);
  border-radius:20px;padding:4px 12px;font-size:.72rem;color:rgba(255,106,0,.6)}

/* Stars that float across the footer */
.footer-star{position:absolute;border-radius:50%;background:#fff;pointer-events:none;
  animation:fstarTwinkle ease-in-out infinite alternate}
@keyframes fstarTwinkle{0%{opacity:.1}100%{opacity:.6}}


@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .footer-grid{grid-template-columns:1fr}
  #station-canvas{height:180px}
}


