/* Global Styles */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html, body { 
    height: 100%; 
    width: 100%; 
    font-family: "Source Code Pro", monospace; 
    background-color: #000; 
    color: #fff; 
}

a { 
    color: #fff; 
    text-decoration: none; 
}

a:hover { 
    text-decoration: underline; 
}

img, svg { 
    max-width: 100%; 
    height: auto; 
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50%     { opacity: 0.85; }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container { 
    width: 100%; 
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 1rem;
}

main {
    flex: 1;
}

.text-center { 
    text-align: center !important; 
}

.mt-4 { 
    margin-top: 1.5rem !important; 
}

.py-5 { 
    padding-top: 2rem !important; 
    padding-bottom: 2rem !important; 
}

/* Header/Navbar */
.navbar { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 1rem 0; 
    border-bottom: 1px solid #fff; 
}

.navbar-brand { 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #fff; 
    text-shadow: 0 0 4px #fff; 
}

.nav { 
    list-style: none; 
    display: flex; 
}

.nav-item { 
    margin-left: 1.5rem; 
}

.nav-link { 
    font-size: 0.9rem; 
    color: #fff; 
    opacity: 0.7; 
}

.nav-link.active, .nav-link:hover { 
    opacity: 1; 
}

/* Search Form - Updated for better aesthetics and centering */
.search-form {
    display: flex;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.75rem 1rem;
    flex-grow: 1;
    min-width: 0;
    font-family: "Source Code Pro", monospace;
    letter-spacing: 0.5px;
    border-radius: 4px 0 0 4px;
    transition: box-shadow 0.2s ease;
}

.search-form input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.search-form button {
    background-color: transparent;
    border: 1px solid #fff;
    border-left: none;
    color: #fff;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-family: "Source Code Pro", monospace;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 0 4px 4px 0;
    transition: all 0.2s ease;
}

.search-form button:hover {
    background-color: #fff;
    color: #000;
    text-shadow: none;
}

/* Hero Section */
.hero { 
    padding: 3rem 0; 
    background-color: #000; 
    text-align: center;
}

.hero h1 { 
    font-size: 2.5rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    text-shadow: 0 0 8px #fff; 
    animation: flicker 2s infinite; 
}

.hero p { 
    font-size: 1.125rem; 
    margin-bottom: 1.5rem; 
    opacity: 0.8; 
}

/* Buttons */
.btn-primary { 
    display: inline-block; 
    background-color: transparent; 
    border: 1px solid #fff; 
    color: #fff; 
    padding: 0.75rem 1.5rem; 
    border-radius: 4px; 
    font-size: 1rem; 
    cursor: pointer; 
    text-transform: uppercase; 
}

.btn-primary:hover { 
    background-color: #fff; 
    color: #000; 
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-secondary {
    display: inline-block; 
    background-color: transparent; 
    border: 1px solid #fff; 
    color: #fff; 
    padding: 0.75rem 1.5rem; 
    border-radius: 4px; 
    font-size: 1rem; 
    cursor: pointer;
    opacity: 0.7;
}

.btn-secondary:hover {
    opacity: 1;
    text-decoration: none;
}

.btn-danger {
    display: inline-block; 
    background-color: transparent; 
    border: 1px solid #f44336; 
    color: #f44336; 
    padding: 0.75rem 1.5rem; 
    border-radius: 4px; 
    font-size: 1rem; 
    cursor: pointer;
}

.btn-danger:hover {
    background-color: #f44336;
    color: #fff;
    text-decoration: none;
}

/* Grid System */
.row { 
    display: flex; 
    flex-wrap: wrap; 
    margin: -0.75rem;
    justify-content: center;
}

.col-md-6, .col-lg-8, .col-lg-4 { 
    width: 100%; 
    padding: 0.75rem; 
}

@media(min-width: 768px) { 
    .col-md-6 { width: 50%; } 
}

@media(min-width: 992px) {
    .col-lg-8 { width: 66.666667%; }
    .col-lg-4 { width: 33.333333%; }
}

/* Cards */
.card { 
    background-color: #000; 
    border: 1px solid #fff; 
    border-radius: 8px; 
    display: flex; 
    flex-direction: column; 
    height: 100%;
    margin-bottom: 1.5rem;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #fff;
}

.card-body { 
    padding: 1.5rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #fff;
}

.card-title { 
    font-size: 1.25rem; 
    font-weight: 600; 
    margin-bottom: 1rem; 
    color: #fff; 
}

/* Blog Post Styles */
.blog-post {
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 4px #fff;
}

.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #fff;
    opacity: 0.7;
    font-size: 0.9rem;
}

.blog-post-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Rich content formatting */
.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-post-content .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
}

.blog-post-content .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.blog-post-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post-content a:hover {
    text-shadow: 0 0 4px #fff;
}

.blog-post-content h1, 
.blog-post-content h2, 
.blog-post-content h3, 
.blog-post-content h4, 
.blog-post-content h5, 
.blog-post-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 2px #fff;
}

.blog-post-content p {
    margin-bottom: 1rem;
}

.blog-post-content ul, 
.blog-post-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.blog-post-content blockquote {
    border-left: 3px solid #fff;
    padding-left: 1rem;
    margin-left: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.blog-post-content pre {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.blog-post-content code {
    font-family: monospace;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.blog-post-content table th,
.blog-post-content table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
}

.blog-post-content table th {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Comments */
.comment {
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.comment-meta {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Alert Messages */
.alert {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.alert-info {
    border-color: #0dcaf0;
    color: #0dcaf0;
}

.alert-success {
    border-color: #20c997;
    color: #20c997;
}

.alert-warning {
    border-color: #ffc107;
    color: #ffc107;
}

.alert-danger {
    border-color: #f44336;
    color: #f44336;
}

.alert-dismissible {
    padding-right: 3rem;
}

.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.25rem;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
}

/* Form Styles */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 1rem;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-text {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* TinyMCE Editor */
.tox .tox-edit-area__iframe {
    background-color: #000 !important;
}

.tox .tox-tbtn {
    color: #fff !important;
}

.tox .tox-tbtn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.tox .tox-toolbar,
.tox .tox-toolbar__primary,
.tox .tox-toolbar__overflow,
.tox .tox-statusbar {
    background-color: #121212 !important;
}

.tox .tox-statusbar a,
.tox .tox-statusbar__path-item,
.tox .tox-statusbar__wordcount,
.tox .tox-statusbar__text-container {
    color: #fff !important;
}

.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Footer */
footer {
    background-color: #000;
    padding: 1.5rem 0;
    border-top: 1px solid #fff;
    margin-top: 3rem;
    text-align: center;
}

footer p {
    opacity: 0.6;
}

/* Table Styles */
.table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.table th {
    font-weight: bold;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 2rem 0;
}

.page-item {
    margin: 0 0.25rem;
}

.page-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
}

.page-item.active .page-link {
    background-color: #fff;
    color: #000;
}

.page-item.disabled .page-link {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.bg-success {
    background-color: #20c997;
    color: #000;
}

.bg-warning {
    background-color: #ffc107;
    color: #000;
}

.bg-danger {
    background-color: #f44336;
    color: #000;
}

.bg-primary {
    background-color: #fff;
    color: #000;
}

.bg-secondary {
    background-color: #6c757d;
    color: #fff;
}

/* Lists */
.list-unstyled {
    list-style: none;
    margin-bottom: 1.5rem;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.list-unstyled li::before {
    content: "><";
    display: inline-block;
    margin-right: 0.5rem;
    color: #fff;
}

/* Search design improvements */
.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-results {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center align home posts */
.home-posts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Music Player - Enhanced Styling */
.music-player {
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1.25rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.music-player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.music-player-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.music-player-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.music-player-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 3px 6px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.music-player-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.music-player-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.music-player-progress {
    flex: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    transition: height 0.2s ease, background-color 0.2s ease;
}

.music-player-progress:hover {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.15);
}

.music-player-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, #fff 100%);
    width: 0%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: width 0.1s linear;
}

.music-player-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
    width: 40px;
    text-align: center;
}

.music-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.music-player-button {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    outline: none;
}

.music-player-button i {
    line-height: 1;
}

.music-player-button:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.music-player-button.play-pause {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-color: rgba(255, 255, 255, 0.8);
}

.music-player-playlist {
    margin-top: 1rem;
    max-height: 230px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

.music-player-playlist::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.music-player-playlist::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.music-player-playlist::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.music-player-playlist::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.music-player-playlist-item {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.music-player-playlist-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.music-player-playlist-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.music-player-playlist-title {
    font-size: 0.875rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.music-player-playlist-format {
    font-size: 0.675rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    margin: 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.music-player-playlist-duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
    width: 40px;
    text-align: right;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(0.96); }
}

.music-player-button.play-pause.playing {
    border-color: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

/* Simple Music Player */
.music-player-simple {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
}

.music-player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.track-title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}

.track-time {
    font-family: monospace;
    font-size: 0.875rem;
    color: #aaa;
}

.music-player-progress {
    height: 6px;
    background-color: #333;
    cursor: pointer;
    border-radius: 3px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.music-player-progress-bar {
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
}

.music-player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.player-btn {
    background-color: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    transition: background-color 0.2s;
}

.player-btn:hover {
    background-color: #333;
}

.player-btn.play-pause {
    width: 42px;
    height: 42px;
}

.player-btn.play-pause.playing {
    background-color: #333;
}

.music-player-playlist {
    max-height: 200px;
    overflow-y: auto;
    border-top: 1px solid #333;
    padding-top: 0.5rem;
}

.playlist-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 3px;
}

.playlist-item:hover {
    background-color: #222;
}

.playlist-item.active {
    background-color: #333;
}

.track-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: 1rem;
}

.track-format {
    font-size: 0.75rem;
    background-color: #333;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    color: #ccc;
}

/* Music Player scrollbar styling */
.music-player-playlist::-webkit-scrollbar {
    width: 5px;
}

.music-player-playlist::-webkit-scrollbar-track {
    background: #111;
}

.music-player-playlist::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.music-player-playlist::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Minimal Top-Left Music Player */
.mini-player {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 100;
    display: flex;
    align-items: center;
    max-width: 300px;
}

.player-controls {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.mini-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0 5px;
}

.mini-btn:hover {
    color: #ccc;
}

.mini-btn.play-pause {
    font-size: 18px;
}

.mini-btn.play-pause.playing {
    color: #aaa;
}

.track-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    overflow: hidden;
}

.track-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.track-time {
    color: #aaa;
    font-size: 10px;
}

.track-list {
    margin: 20px 0;
    max-width: 600px;
}

.track-item {
    padding: 8px 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.track-item:hover {
    background-color: #111;
}

.track-item.active {
    background-color: #222;
}

.format-badge {
    font-size: 10px;
    background-color: #333;
    color: #ccc;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
}

/* SPA Navigation Styles */
.loading {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    animation: pulse 1.5s infinite;
}

.error {
    text-align: center;
    padding: 2rem;
    color: #f44336;
    border: 1px solid #f44336;
    border-radius: 4px;
    margin: 2rem auto;
    max-width: 80%;
}

/* Page transition animations */
main {
    transition: opacity 0.3s ease;
}

main.loading {
    opacity: 0.6;
}

/* Spinner animation for loading state */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin: 1rem auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Smooth page transition */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    animation: fadeIn 0.3s ease-in-out;
} 