/* Base Styles */
:root {
    --dark-purple: #0f0b1e;
    --darker-purple: #090614;
    --medium-purple: #1a152e;
    --light-purple: #2d2842;
    --accent-purple: #7a5af5;
    --accent-hover: #8d6ff7;
    --text-primary: #f0f0f0;
    --text-secondary: #b8b5c9;
    --text-muted: #8a879d;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border-color: #3a3550;
    --card-bg: rgba(26, 21, 46, 0.8);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-purple);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(122, 90, 245, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(45, 40, 66, 0.05) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tech-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

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

/* Header & Navigation */
header {
    background-color: rgba(15, 11, 30, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a.active {
    color: var(--accent-purple);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-purple);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(122, 90, 245, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.hero h1 span {
    background: linear-gradient(90deg, #7a5af5, #b39cf5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* Features Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
}

.features {
    padding: 80px 0;
    background-color: rgba(15, 11, 30, 0.7);
}

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

.feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-lg);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), transparent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(122, 90, 245, 0.1), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-purple);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Products Preview Section */
.products-preview {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 180px;
    background-color: var(--medium-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 90, 245, 0.1), transparent);
}

.product-image i {
    font-size: 60px;
    color: var(--accent-purple);
    z-index: 1;
}

.product-content {
    padding: 25px;
}

.product-category {
    display: inline-block;
    color: var(--accent-purple);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-purple);
}

.product-sold {
    color: var(--text-muted);
    font-size: 13px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* Products Filter */
.products-filter {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
}

.filter-select, .search-box input {
    padding: 12px 15px;
    background-color: var(--medium-purple);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
}

.filter-select:focus, .search-box input:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    padding-left: 45px;
}

/* Product Preview Page */
.product-preview {
    padding: 60px 0 80px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-button:hover {
    color: var(--accent-purple);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    background-color: var(--medium-purple);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 90, 245, 0.1), transparent);
}

.main-image i {
    font-size: 120px;
    color: var(--accent-purple);
    z-index: 1;
}

.product-details {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-top: 15px;
}

.details-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--accent-purple);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-purple);
}

.tab-content {
    display: none;
    color: var(--text-secondary);
    line-height: 1.7;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.tab-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tab-content li {
    margin-bottom: 8px;
}

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

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.product-actions .btn {
    flex: 1;
    padding: 16px;
    font-size: 16px;
}

/* Dashboard & Forms */
.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background-color: var(--medium-purple);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

/* Footer */
footer {
    background-color: var(--darker-purple);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent-purple);
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-purple);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-item i {
    color: var(--accent-purple);
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--medium-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Admin Styles */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background-color: var(--darker-purple);
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
}

.admin-logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.admin-logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-logo span {
    color: var(--accent-purple);
}

.admin-nav {
    padding: 0 20px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: var(--medium-purple);
    color: var(--accent-purple);
}

.admin-nav i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.admin-header {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.admin-header h1 {
    margin: 0;
    font-size: 24px;
    color: var(--text-primary);
}

.admin-content {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--medium-purple);
    color: var(--text-primary);
    font-weight: 600;
}

table tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: var(--warning);
    color: var(--warning);
}

/* Loader */
.loader {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-purple);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 46px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .details-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn.active::after {
        bottom: -15px;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        padding: 15px 0;
    }
    
    .admin-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }
    
    .admin-nav a {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .feature-card,
    .product-card {
        padding: 25px 20px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .main-image i {
        font-size: 80px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Original style.css from your backend */
body {
    font-family: Arial, sans-serif;
    background: #0f1115;
    color: #eaeaea;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

nav {
    background: #151823;
    padding: 15px;
}

nav a {
    color: #9aa4ff;
    margin-right: 15px;
    text-decoration: none;
}

.card {
    background: #1b1f2e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

button {
    background: #5865f2;
    border: none;
    padding: 12px 20px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button.secondary {
    background: #2c2f44;
}

select, input {
    padding: 10px;
    width: 100%;
    margin-top: 5px;
    background: #0f1115;
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
}

.loader {
    border: 4px solid #333;
    border-top: 4px solid #5865f2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Add these styles to your existing style2.css */

/* PayPal F&F Specific Styles */
.paypal-ff-badge {
    background: linear-gradient(90deg, #003087, #009cde);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.instruction-box {
    background: var(--medium-purple);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-purple);
}

.instruction-box ol, .instruction-box ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.instruction-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.code-snippet {
    background: var(--darker-purple);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    color: var(--accent-purple);
    word-break: break-all;
    margin: 10px 0;
    border: 1px solid var(--border-color);
}

/* Payment status indicators */
.status-pending {
    background: var(--warning);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-paid {
    background: var(--success);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-failed {
    background: var(--danger);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Copy button */
.copy-btn {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 10px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Payment method icons */
.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--medium-purple);
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--accent-purple);
    background: rgba(122, 90, 245, 0.1);
}

.payment-method.active {
    border-color: var(--accent-purple);
    background: rgba(122, 90, 245, 0.2);
}

.payment-method i {
    font-size: 24px;
}

.payment-method.paypal i {
    color: #003087;
}

.payment-method.stripe i {
    color: #635bff;
}

/* Warning alert for F&F */
.alert-ff {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.alert-ff h4 {
    color: var(--warning);
    margin: 0 0 10px 0;
}

.alert-ff p {
    color: var(--text-secondary);
    margin: 0;
}