/* Enhanced Results Pages Styles */

/* No matches state */
.no-matches {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.no-matches-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.no-matches h3 {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 1rem;
}

.no-matches p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Match cards enhanced */
.matches-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.match-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(37, 99, 235, 0.08);
}

.match-card:hover::before {
    opacity: 1;
}

.match-card.giocata {
    border-left: 4px solid #10b981;
}

.match-card.programmata {
    border-left: 4px solid #f59e0b;
}

.match-date-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.match-date-time .date {
    font-weight: 600;
    color: #374151;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
}

.match-teams .our-team {
    color: var(--primary-color);
    font-weight: 700;
}

.match-teams .vs {
    font-size: 0.8rem;
    color: #9ca3af;
    padding: 0 1rem;
}

.match-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.match-score .winner {
    color: #10b981;
}

.match-score .score-separator {
    color: #9ca3af;
    font-weight: 400;
}

.match-result {
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.match-result.victory {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.match-result.defeat {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.match-result.draw {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.match-status {
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    margin-bottom: 0.5rem;
}

.match-venue {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

.match-venue i {
    margin-right: 0.25rem;
}

/* Result cards for main page */
.result-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.result-header .team-name {
    font-weight: 600;
    color: var(--primary-color);
}

.result-header .match-date {
    font-size: 0.85rem;
    color: #64748b;
}

.match-info .teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.match-info .score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-status {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

/* Modern Team Navigation */
.modern-team-navigation {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.nav-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.nav-header h3 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.nav-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.team-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.category-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.category-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.category-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-header h4 i {
    color: var(--primary-color);
}

.team-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.nav-team-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-team-card.minibasket::before {
    background: linear-gradient(90deg, #10b981, #22c55e);
}

.nav-team-card.giovanili::before {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.nav-team-card.senior::before {
    background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

.nav-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.1),
        0 6px 15px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.nav-team-card:hover::before {
    transform: scaleX(1);
}

.nav-team-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.nav-team-card.minibasket .card-icon {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.nav-team-card.giovanili .card-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.nav-team-card.senior .card-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.nav-team-card:hover .card-icon {
    transform: scale(1.1);
}

.nav-team-card .card-content {
    flex: 1;
}

.nav-team-card .card-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.nav-team-card .card-content .age {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.nav-team-card .card-content .coach {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

.nav-team-card .card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
}

.nav-team-card:hover .card-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-team-navigation {
        padding: 1.5rem;
    }
    
    .nav-header h3 {
        font-size: 1.6rem;
    }
    
    .team-navigation-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .nav-team-card {
        padding: 1rem;
    }
    
    .nav-team-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .nav-team-card .card-content h5 {
        font-size: 1rem;
    }
}

/* Custom gradients for different team categories */
.results-page.minibasket .page-header {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.results-page.giovanili .page-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.results-page.senior .page-header {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* Team-specific color schemes */
.team-aquilotti .team-header {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.team-scoiattoli .team-header {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.team-minibasket-pulcini .team-header {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.team-under13 .team-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.team-under15 .team-header {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.team-under17 .team-header {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.team-dr2 .team-header {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.team-dr3 .team-header {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

/* Enhanced card styles */
.enhanced-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.enhanced-card:hover::before {
    transform: scaleX(1);
}

.enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(37, 99, 235, 0.1),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

/* Enhanced team info section */
.team-info-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.team-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.team-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.team-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.team-details h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.team-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.team-meta span {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.team-meta span i {
    color: var(--primary-color);
}

.team-meta .coach {
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    border-color: rgba(3, 169, 244, 0.3);
}

/* Enhanced results section */
.results-section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced match cards */
.match-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(37, 99, 235, 0.08);
}

.match-card:hover::before {
    opacity: 1;
}

.match-card.giocata {
    border-left: 4px solid #10b981;
}

.match-card.programmata {
    border-left: 4px solid #f59e0b;
}

/* Enhanced stats grid */
.team-stats {
    margin-top: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(37, 99, 235, 0.05);
}

.team-stats h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(37, 99, 235, 0.08);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card.victory::before {
    background: linear-gradient(90deg, #10b981, #22c55e);
}

.stat-card.defeat::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced navigation section */
.navigation-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.navigation-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.navigation-links .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navigation-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced breadcrumb */
.breadcrumb {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .team-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-logo {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .team-details h2 {
        font-size: 2rem;
    }
    
    .team-meta {
        justify-content: center;
    }
    
    .navigation-links {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Floating elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2n) {
    animation-delay: -2s;
}

.floating-element:nth-child(3n) {
    animation-delay: -4s;
}

/* Glassmorphism effects */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Advanced hover states */
.interactive-element {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.interactive-element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.interactive-element:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced typography */
.enhanced-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subtitle-gradient {
    background: linear-gradient(135deg, var(--text-light), var(--text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Advanced animations */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Particle background effect */
.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(2n) {
    background: rgba(59, 130, 246, 0.2);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: rgba(99, 102, 241, 0.2);
    animation-duration: 25s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced loading states */
.skeleton-gradient {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Improved focus states */
.enhanced-focus:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(37, 99, 235, 0.3),
        0 0 0 1px var(--primary-color);
    transform: scale(1.02);
}

/* Custom scrollbar for results content */
.results-content::-webkit-scrollbar {
    width: 6px;
}

.results-content::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.5);
    border-radius: 3px;
}

.results-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.results-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .enhanced-card {
        margin-bottom: 20px;
    }
    
    .particle {
        display: none; /* Hide particles on mobile for performance */
    }
    
    .glass-card {
        backdrop-filter: blur(5px); /* Reduce blur on mobile */
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .particle,
    .enhanced-card::before {
        animation: none;
    }
    
    .enhanced-card:hover {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .enhanced-card {
        background: linear-gradient(145deg, #1e293b, #334155);
        border-color: rgba(148, 163, 184, 0.1);
    }
    
    .glass-card {
        background: rgba(30, 41, 59, 0.8);
        border-color: rgba(148, 163, 184, 0.2);
    }
}

/* Print styles */
@media print {
    .enhanced-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .floating-element,
    .particle-bg {
        display: none;
    }
    
    .page-header {
        background: none !important;
        color: black !important;
    }
}
