
/* Base Styles and Reset */
:root {
    /* New Ultra-Modern Color Palette */
    --primary-color: #4361ee;       /* Vibrant electric blue */
    --primary-dark: #3a0ca3;        /* Deep royal purple-blue */
    --primary-light: #4895ef;       /* Bright sky blue */
    --secondary-color: #7209b7;     /* Rich purple */
    --accent-color: #4cc9f0;        /* Cyan-turquoise */
    --success-color: #2ec4b6;       /* Teal */
    --warning-color: #ff9f1c;       /* Golden amber */
    --danger-color: #ef476f;        /* Vibrant pink-red */
    --bg-color: #f8f9fa;            /* Clean off-white */
    --bg-card: #ffffff;             /* Pure white */
    --text-primary: #212529;        /* Deep charcoal */
    --text-secondary: #495057;      /* Medium gray */
    --text-muted: #adb5bd;          /* Light gray */
    --border-color: #e9ecef;        /* Very light gray */
    
    /* Enhanced Shadows (More Depth) */
    --shadow-sm: 0 2px 4px rgba(33, 37, 41, 0.05);
    --shadow-md: 0 6px 12px -2px rgba(33, 37, 41, 0.1), 0 4px 6px -3px rgba(33, 37, 41, 0.08);
    --shadow-lg: 0 15px 25px -5px rgba(33, 37, 41, 0.15), 0 8px 10px -6px rgba(33, 37, 41, 0.1);
    
    /* Fonts */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Enhanced Transition */
    --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* New Animation Variables */
    --animation-float: float 6s ease-in-out infinite;
    --animation-gradient-shift: gradientShift 12s ease infinite;
    --animation-breathe: breathe 4s ease-in-out infinite;
    --animation-flicker: flicker 8s infinite alternate;
}

.dark-theme {
    /* Dark Mode - Cyberpunk Inspired */
    --primary-color: #4895ef;
    --primary-dark: #3a0ca3;
    --primary-light: #4cc9f0;
    --secondary-color: #b5179e;
    --accent-color: #f72585;
    --success-color: #2ec4b6;
    --warning-color: #ffbe0b;
    --danger-color: #ef476f;
    --bg-color: #0a0a12;            /* Deep space blue-black */
    --bg-card: #161622;             /* Slightly lighter card bg */
    --text-primary: #f8f9fa;
    --text-secondary: #e9ecef;
    --text-muted: #adb5bd;
    --border-color: #2b2b40;
    
    /* Dark Mode Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.4), 0 4px 6px -3px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 15px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

/* === New Stunning Animations === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes breathe {
    0%, 100% { opacity: 0.96; transform: scale(0.99); }
    50% { opacity: 1; transform: scale(1.01); }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        box-shadow: 0 0 8px rgba(244, 114, 182, 0.6);
    }
    20%, 24%, 55% {  
        box-shadow: 0 0 12px rgba(244, 114, 182, 0.9);
    }
}

/* === Modern UI Enhancements === */
* {
    transition: 
        color 0.4s ease,
        background-color 0.4s ease,
        border-color 0.4s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Glowing Cards */
.card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0)
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.card:hover::before {
    opacity: 1;
    animation: shine 1.5s;
}

@keyframes shine {
    100% {
        transform: rotate(30deg) translate(20%, 20%);
    }
}

/* Button Effects */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.1)
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(0);
}

/* Cyberpunk Toggle for Dark Mode */
.theme-toggle {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transition: all 0.4s ease;
}

.theme-toggle:hover {
    box-shadow: 0 0 20px var(--accent-color);
    animation: flicker 8s infinite alternate;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    padding: 0.2em 0.4em;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
}

.dark-theme code {
    background-color: rgba(255, 255, 255, 0.1);
}

pre {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.dark-theme pre {
    background-color: rgba(0, 0, 0, 0.3);
}

pre code {
    background-color: transparent;
    padding: 0;
    font-size: 0.85rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.site-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.logo-container {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.dark-theme .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: white;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-bar input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.25rem;
}

/* Stats Section */
.api-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-count {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* API Categories */
.api-category {
    margin-bottom: 2rem;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--primary-color);
}

.category-count {
    background-color: var(--primary-light);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.api-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.api-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.api-item:hover {
    box-shadow: var(--shadow-md);
}

.api-header {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.dark-theme .api-header {
    background-color: rgba(255, 255, 255, 0.02);
}

.api-header:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dark-theme .api-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.api-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.api-method {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

.api-title {
    font-weight: 600;
    font-size: 1rem;
}

.api-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.api-status-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.api-status-badge.online {
    color: var(--success-color);
}

.api-status-badge.offline {
    color: var(--danger-color);
}

.api-status-badge i {
    font-size: 0.625rem;
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.dark-theme .toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.api-description {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.api-description.active {
    padding: 1.5rem;
    max-height: 1000px;
    transition: max-height 0.5s ease-in, padding 0.3s ease;
}

.api-details {
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.api-params, .api-response {
    margin-top: 1rem;
}

.api-params h4, .api-response h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.api-params ul {
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

.param {
    color: var(--primary-color);
    font-style: italic;
}

.api-actions-footer {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.try-btn {
    background-color: var(--primary-color);
    color: white;
}

.try-btn:hover {
    background-color: var(--primary-dark);
}

.copy-btn {
    background-color: var(--bg-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.copy-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dark-theme .copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.hidden {
    display: none;
}

/* Footer */
.site-footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-info {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-logo i {
    margin-right: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    transform: translateY(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
    color: var(--success-color);
}

.toast-message {
    font-weight: 500;
}

.toast-progress {
    width: 100%;
    height: 3px;
    background-color: var(--primary-light);
    margin-top: 0.75rem;
    border-radius: 1px;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .api-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .api-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .toast {
        left: 1rem;
        right: 1rem;
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .search-bar input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.875rem;
    }
    
    .search-icon {
        font-size: 1rem;
    }
    
    .api-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .api-actions-footer {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .api-category {
        padding: 1rem;
    }
    
    .api-description.active {
        padding: 1rem;
    }
}

/* Animations for elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.api-category {
    animation: fadeIn 0.5s ease forwards;
}

.api-category:nth-child(1) {
    animation-delay: 0.1s;
}

.api-category:nth-child(2) {
    animation-delay: 0.2s;
}

.api-category:nth-child(3) {
    animation-delay: 0.3s;
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

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

.dark-theme ::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
}

.dark-theme ::-webkit-scrollbar-thumb:hover {
    background: var(--text-primary);
}
  .site-footer {
      background: #1a1a2e;
      color: #e0e0e0;
      padding: 1.5rem 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
  }
  
  .footer-content {
      display: flex;
      justify-content: space-between;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
  }
  
  .footer-info {
      flex: 1;
      min-width: 150px;
  }
  
  .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
  }
  
  .footer-logo i {
      color: #00d9ff;
      font-size: 1.2rem;
  }
  
  .footer-info p {
      font-size: 0.8rem;
      opacity: 0.8;
      margin: 0;
  }
  
  .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
  }
  
  .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.2s ease;
      font-size: 0.85rem;
  }
  
  .footer-links a:hover {
      color: #00d9ff;
      transform: translateY(-2px);
  }
  
  .footer-links a i {
      font-size: 0.9rem;
  }
  
  .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1.2rem 0;
  }
  
  .social-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }
  
  .social-icon:hover {
      background: linear-gradient(45deg, #4a6bff, #00d9ff);
      transform: translateY(-3px) rotateY(15deg);
      box-shadow: 0 4px 8px rgba(0, 217, 255, 0.3);
  }
  
  .social-icon img {
      width: 16px;
      height: 16px;
      transition: all 0.3s ease;
  }
  
  .social-icon:hover img {
      transform: scale(1.1);
      filter: brightness(0) invert(1);
  }
  
  .copyright {
      text-align: center;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 1rem;
      font-size: 0.75rem;
      opacity: 0.7;
  }
  
  @media (max-width: 600px) {
      .footer-content {
          flex-direction: column;
          gap: 1rem;
      }
      
      .footer-links {
          justify-content: flex-start;
      }
      
      .social-icons {
          margin: 1rem 0;
      }
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #f39c12;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.menu-container {
    position: relative;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    color: #f39c12;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: #f5f5f5;
    color: #f39c12;
}

.menu-item i {
    width: 20px;
    text-align: center;
}