/* Share Modal Styles */
.share-modal {
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.share-modal-content {
    animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Styles */
.notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(100%);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Share button hover effects */
.share-button:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Social media button colors */
.facebook-share:hover {
    color: #1877f2 !important;
}

.twitter-share:hover {
    color: #1da1f2 !important;
}

.whatsapp-share:hover {
    color: #25d366 !important;
}

/* Custom CSS for AasaiFM PHP Site */

/* Base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1f2937;
    color: #f9fafb;
    line-height: 1.6;
}

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

::-webkit-scrollbar-track {
    background: #374151;
}

::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Radio card styles */
.radio-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.radio-card:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.radio-card img {
    transition: transform 0.3s ease;
}

.radio-card:hover img {
    transform: scale(1.05);
}

/* Featured banner styles */
.featured-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-banner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(236, 72, 153, 0.2),
                0 0 30px rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
    transition: opacity 0.3s ease;
}

.featured-banner:hover::before {
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.2) 100%
    );
}

.featured-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(236, 72, 153, 0.1) 0%,
        rgba(249, 115, 22, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.featured-banner:hover::after {
    opacity: 1;
}

.featured-banner img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.featured-banner:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.featured-banner-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 0 0 1rem 1rem;
}

.featured-banner-content h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.featured-banner-content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.featured-banner .badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-banner .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.featured-banner:hover .badge::before {
    left: 100%;
}

.featured-banner:hover .badge {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Floating animation for featured banners */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.featured-banner:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.featured-banner:nth-child(2) {
    animation: float 6s ease-in-out infinite 2s;
}

.featured-banner:nth-child(3) {
    animation: float 6s ease-in-out infinite 4s;
}

.featured-banner:hover {
    animation-play-state: paused;
}

/* Enhanced play count styling */
.featured-banner-content .play-count {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.featured-banner:hover .play-count {
    background: rgba(0, 0, 0, 0.8);
    color: #f59e0b;
    transform: scale(1.05);
}

/* Improved section title */
.featured-section-title {
    background: linear-gradient(135deg, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.featured-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    border-radius: 2px;
}

/* Responsive improvements */
@media (max-width: 640px) {
    .featured-banner {
        border-radius: 0.75rem;
    }
    
    .featured-banner-content {
        padding: 1rem;
    }
    
    .featured-banner-content h3 {
        font-size: 1.25rem;
    }
    
    .featured-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    background: #374151;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #4b5563;
    border-color: #6b7280;
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-green {
    background: #10b981;
    color: white;
}

.badge-orange {
    background: #f97316;
    color: white;
}

.badge-yellow {
    background: #fbbf24;
    color: black;
}

.badge-pink {
    background: #ec4899;
    color: white;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Radio pulse animation */
@keyframes radio-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.radio-pulse {
    animation: radio-pulse 2s ease-in-out infinite;
}

/* Search input styles */
.search-input {
    background: #374151;
    border: 1px solid #4b5563;
    color: white;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

/* Sidebar styles */
.sidebar-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: #374151;
    color: white;
}

.sidebar-link.active {
    background: #ec4899;
    color: white;
}

.sidebar-link.active:hover {
    background: #db2777;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
}

/* Grid layouts */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media (max-width: 1200px) {
    .trending-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .radio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .radio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 360px) {
    .radio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.featured-grid {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 0.75rem !important;
    padding: 1rem 0 !important;
    width: 100% !important;
}

/* Force grid layout for featured radios */
section .featured-grid {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 0.75rem !important;
}

/* Override Tailwind classes with maximum specificity */
.featured-grid .radio-card img.w-full.h-48.object-cover {
    height: 120px !important;
    max-height: 120px !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Additional override for all featured grid images */
.featured-grid img {
    height: 120px !important;
    max-height: 120px !important;
}

/* Smaller card sizes for featured grid */
.featured-grid .radio-card {
    min-height: 200px !important;
}

.featured-grid .radio-card img {
    height: 120px !important;
    max-height: 120px !important;
}

.featured-grid .radio-card .p-4 {
    padding: 0.75rem;
}

.featured-grid .radio-card h3 {
    font-size: 0.875rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.featured-grid .radio-card p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.featured-grid .radio-card .flex.items-center.space-x-2 {
    gap: 0.25rem;
}

.featured-grid .radio-card .flex.items-center.space-x-2 button {
    padding: 0.25rem;
}

.featured-grid .radio-card .flex.items-center.space-x-2 i {
    height: 0.875rem;
    width: 0.875rem;
}

/* Optimize badge size for featured grid */
.featured-grid .radio-card .badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}

/* Optimize play button overlay for smaller cards */
.featured-grid .radio-card .play-button {
    padding: 0.5rem;
}

.featured-grid .radio-card .play-button i {
    height: 1rem;
    width: 1rem;
}

@media (max-width: 1400px) {
    .featured-grid {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .featured-grid .radio-card {
        min-height: 180px !important;
    }
    
    .featured-grid .radio-card img {
        height: 100px !important;
        max-height: 100px !important;
    }
}

@media (max-width: 640px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .featured-grid .radio-card {
        min-height: 160px !important;
    }
    
    .featured-grid .radio-card img {
        height: 80px !important;
        max-height: 80px !important;
    }
    
    .featured-grid .radio-card .p-4 {
        padding: 0.5rem !important;
    }
}

/* Mobile menu styles */
[data-mobile-menu] {
    transition: transform 0.3s ease-in-out;
}

[data-mobile-menu].hidden {
    transform: translateX(-100%);
}

[data-mobile-menu]:not(.hidden) {
    transform: translateX(0);
}

/* Player styles */
.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-progress {
    flex: 1;
    max-width: 400px;
}

.progress-slider {
    width: 100%;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.progress-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ec4899;
    cursor: pointer;
}

.progress-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ec4899;
    cursor: pointer;
    border: none;
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(135deg, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #ec4899, #f97316);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, #ec4899, #f97316) 1;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Error states */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

/* Loading states */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #374151;
    border-top: 2px solid #ec4899;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Header and content spacing */
@media (min-width: 1024px) {
    .lg\:ml-64 {
        margin-left: 16rem;
        margin-top: 10px;
    }
}

/* Override Tailwind py-6 class */
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

/* Mobile Slider - Matching Trending Radios Style */
.featured-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.slider-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: none;
}

.slider-item.active {
    display: block;
}

/* Match trending radios card style */
.featured-slider .radio-card {
    background: #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-slider .radio-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Clean dot navigation */
.slider-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.slider-dot:hover {
    transform: scale(1.2);
    background-color: #9ca3af;
}

.slider-dot.active {
    background-color: #ec4899 !important;
    transform: scale(1.1);
    width: 14px;
    height: 14px;
}






/* Desktop: Show featured grid, hide slider */
@media (min-width: 1025px) {
    .featured-grid {
        display: grid !important;
    }
    
    .featured-slider {
        display: none !important;
    }
}

/* Mobile responsive grid layouts */
@media (max-width: 1024px) {
    /* Hide desktop featured grid on mobile and tablet */
    .featured-grid {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Show mobile slider on mobile and tablet */
    .featured-slider {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
}

@media (max-width: 768px) {
    /* Radio grid - 2 cards per row on mobile */
    .radio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    /* Trending grid - 2 cards per row on mobile */
    .trending-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    /* Ensure all radio cards are properly sized on mobile */
    .radio-card {
        min-height: 200px !important;
    }
    
    .radio-card img {
        height: 120px !important;
        max-height: 120px !important;
    }
    
    .radio-card h3 {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .radio-card p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens - keep 2 cards per row but adjust spacing */
    .radio-grid {
        gap: 0.75rem !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .trending-grid {
        gap: 0.75rem !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Smaller card sizes for very small screens */
    .radio-card {
        min-height: 180px !important;
    }
    
    .radio-card img {
        height: 100px !important;
        max-height: 100px !important;
    }
    
    .radio-card h3 {
        font-size: 0.8rem !important;
    }
    
    .radio-card p {
        font-size: 0.7rem !important;
    }
}

/* Mobile layout adjustments */
@media (max-width: 1024px) {
    /* Remove desktop sidebar margin on mobile */
    .lg\:ml-64 {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Adjust main content padding for mobile */
    main {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-top: 1rem !important;
    }
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    /* Reduce header padding on mobile */
    .py-6 {
        padding-top: 1rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    /* Adjust search bar for mobile */
    .search-container {
        max-width: 200px;
    }
    
    /* Hide social icons on very small screens */
    .social-icons {
        display: none !important;
    }
}

/* Enhanced SEO and Performance Optimizations */
/* Improved mobile navigation */
@media (max-width: 1024px) {
    .mobile-nav-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.2s ease;
    }
    
    .mobile-nav-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Better mobile search */
    .search-container {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    /* Mobile-friendly buttons */
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px; /* Touch-friendly size */
    }
    
    /* Improve mobile sidebar */
    .mobile-sidebar {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Enhanced responsive grid for better SEO */
@media (max-width: 1200px) {
    .radio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .trending-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .radio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Improve mobile card spacing */
    .radio-card {
        min-height: 200px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .radio-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Single column layout for very small screens */
    .radio-card {
        min-height: 180px;
    }
}

/* Performance optimizations */
.radio-card img {
    loading: lazy;
    decoding: async;
}

/* Improve accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .radio-card {
        border: 2px solid #ffffff;
    }
    
    .btn-primary {
        border: 2px solid #ffffff;
    }
}
