@charset "utf-8";

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

:root {
    --primary: #00d9ff;
    --secondary: #ff00ea;
    --dark: #0a0a0f;
    --light: #ffffff;
    --glow: #00ffcc;
    --font-display: 'Orbitron', monospace;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--dark);
    font-family: var(--font-body);
    color: white;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--secondary));
	border-radius: 10px;
}

/* --- START MERGED NAVBAR CSS --- */

#merged-navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    pointer-events: none;
}

#merged-navbar-container * {
    box-sizing: border-box;
    pointer-events: auto;
}

#merged-navbar-container header {
    position: relative;
    width: 100%;
}

/* --- DESKTOP STYLES --- */

#merged-navbar-container .desktop-logo-link {
    pointer-events: none;
}

#merged-navbar-container #logo {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    width: 80px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
    z-index: 100001;
    pointer-events: auto;
}

#merged-navbar-container nav.desktop-nav {
    display: flex;
    height: 65px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    left: 0;
    right: 0;
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    top: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 200px;
    z-index: 100000;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}

#merged-navbar-container nav.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    padding: 10px 25px;
    line-height: 1;
    font-size: 16px;
    letter-spacing: 2px;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
}

#merged-navbar-container nav.desktop-nav button {
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 100002;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    outline: 0;
    border: 0;
    cursor: pointer;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    transform: scale(0);
}

#merged-navbar-container nav.desktop-nav button span {
    width: 40%;
    background: #fff;
    height: 2px;
    display: block;
    margin: 5px auto;
    transform: scalex(0);
    transition: 0.6s transform cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s margin ease-in 0s;
}

#merged-navbar-container nav.desktop-nav button:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

#merged-navbar-container nav.desktop-nav button:hover span {
    margin: 10px auto;
}

/* Sticky state styles */
#merged-navbar-container header.sticky .desktop-logo-link #logo {
    top: 0;
    transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.5s;
}

#merged-navbar-container header.sticky nav.desktop-nav {
    top: 20px;
    padding: 0;
    width: 90px;
    height: 90px;
    transition-delay: 0.5s;
}

#merged-navbar-container header.sticky nav.desktop-nav button {
    transform: scale(1);
    transition-delay: 0.6s;
}

#merged-navbar-container header.sticky nav.desktop-nav button span {
    transform: scalex(1);
    transition: 0.6s transform cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s, 0.3s margin ease-in 0s;
}

#merged-navbar-container header.sticky nav.desktop-nav a {
    padding: 0;
    opacity: 0;
    letter-spacing: 0px;
    transform: scale(0.3);
    transition-delay: 0.2s;
    pointer-events: none;
}

/* --- MOBILE & TABLET STYLES --- */

/* Mobile Hamburger Button */
#mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 100001;
    cursor: pointer;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 8px;
}

#mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Logo */
.mobile-logo-link {
    display: none;
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 100001;
}

#mobile-logo {
    width: 50px;
    height: auto;
}

/* Sidebar Overlay */
#sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#sidebar-overlay.sidebar-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Sidebar Menu */
#mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80%;
    height: 100%;
    background-color: rgba(20, 20, 25, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: none;
    padding-top: 100px;
}

#mobile-sidebar.sidebar-open {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 30px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE MEDIA QUERY --- */

@media (max-width: 992px) {

    /* Hide Desktop Elements */
    #merged-navbar-container .desktop-logo-link,
    #merged-navbar-container nav.desktop-nav {
        display: none;
    }

    /* Show Mobile Elements */
    #mobile-menu-toggle,
    .mobile-logo-link,
    #mobile-sidebar,
    #sidebar-overlay {
        display: block;
    }
}

/* --- END OF NAVBAR ---*/

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 40vh;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

#color {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 2s ease-in-out infinite alternate;
    letter-spacing: 0.1em;
}

#color1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 2s ease-in-out infinite alternate;
}

@media (max-width: 500px) {
    #color1 {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- HERO BOXES --- */
.cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
    width: 100%;
    font-family: var(--font-heading);
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    padding: 30px;
    backdrop-filter: blur(20px);
    border-radius: 8px;
    width: 500px;
    max-width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--glow));
    border-radius: 20px;
    opacity: 0;
    z-index: -2;
    transition: opacity 0.5s ease;
    animation: rotate-gradient 3s linear infinite;
    background-size: 200% 200%;
}

@keyframes rotate-gradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 200%;
    }
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary);
    box-shadow:
        0 20px 40px rgba(0, 217, 255, 0.3),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
}

.info-card:hover::before {
    opacity: 0.05;
}

.info-card:hover::after {
    opacity: 1;
}


.card-header h3 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.card-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}

.btn-primary1 {
    background-color: white;
    color: black;
}

.btn-primary1:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mouse Follower */
.mouse-follower {
	position: fixed;
	width: 20px;
	height: 20px;
	border: 2px solid var(--primary);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transition: all 0.1s ease;
	transform: translate(-50%, -50%);
}

.stars {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.star {
	position: absolute;
	width: 2px;
	height: 2px;
	background: white;
	border-radius: 50%;
	animation: twinkle 3s infinite;
}

@keyframes twinkle {

	0%,
	100% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

/* --- SPACEX API DATA SECTIONS --- */
.api-section {
    background-color: #000;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.data-container {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.section-header {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 4px solid white;
    padding-left: 15px;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.search-box {
    padding: 10px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

/* Ongoing Card Style */
.ongoing-card {
    background: #0b0b0b;
    border: 1px solid #222;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.ongoing-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.og-mission {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.og-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #aaa;
    margin-top: 10px;
}

.og-label {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.mission-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.mission-table th {
    text-align: left;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 10px;
    border-bottom: 1px solid #333;
}

.mission-table td {
    padding: 20px 10px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.mission-table tr:hover td {
    background-color: #0a0a0a;
    color: #fff;
}

.status-success {
    color: #4ade80;
}

.status-fail {
    color: #f87171;
}

/* --- USER MISSION CONTROL (CRUD) --- */
.crud-section {
    background-color: transparent;
    padding: 80px 20px;
    border-top: 1px solid #222;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-form-container {
    background: #111;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

input,
textarea {
    background: #000;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    color-scheme: dark;
}

input:focus,
textarea:focus {
    border-color: white;
}

.btn-launch {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 15px;
    border: none;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    overflow: hidden;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.btn-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s ease;
}

.btn-launch:hover::before {
    left: 100%;
}

.btn-launch:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

/* Mission Grid */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: white;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.m-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.m-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.m-pilot {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    font-style: italic;
}

.m-desc {
    color: #ccc;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-content {
    background: #1a1a1a;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    border: 1px solid #444;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-delete {
    background: #ff3333;
    color: white;
    flex: 1;
    border: none;
    padding: 10px;
}

.btn-save {
    background: white;
    color: black;
    flex: 1;
    border: none;
    padding: 10px;
}

.btn-cancel {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    flex: 1;
    padding: 10px;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .info-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .info-card {
        width: 100%;
        margin-bottom: 20px;
    }

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

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

    .og-mission {
        font-size: 1.8rem;
    }
}

/* footer section */
footer {
    width: 100%;
	font-family: var(--font-heading);
    position: absolute;
    background: transparent;
    color: white;
    padding: 100px 0 30px;
    font-size: 15px;
    line-height: 20px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3) {
    flex-basis: 15%;
}

.logo-2 {
    width: 80px;
    margin-bottom: 30px;
}

#logo-2 {
	width: 100px;
	height: 100px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.support {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.king {
    list-style: none;
    margin-bottom: 12px;
}

.king a {
    text-decoration: none;
    color: white;
}

.news {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.news .fa-regular {
    font-size: 18px;
    margin-right: 10px;
}

.news .Newsletter {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.news button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.news button .fa-solid {
    font-size: 16px;
    color: #ccc;
}

.apps .fa-brands {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: white;
    margin-right: 15px;
    cursor: pointer;

}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

.underline {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite; 
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 900px) {
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }
    
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
}

/* End of Footer Section */

/* --- CUSTOM NOTIFICATION POPUP --- */
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.8); 
  backdrop-filter: blur(5px); /* Blur the background slightly */
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 10000; 
}

.notification-box {
  background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 80%;
  color: var(--light);
  font-family: var(--font-heading);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth pop-in animation */
}

.notification-box h3 {
  margin-top: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.notification-box p {
  font-size: 16px;
  opacity: 0.9;
  margin: 20px 0;
}

#notification-close-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#notification-close-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary); /* Cyan outline */
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--light);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: scale(1.05);
}