/* Multi-Screen Page Finnish Branding */

/* Tab button styling with Finnish blue */
.tab-button {
    color: #ccc;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #fff;
    background-color: rgba(0, 53, 128, 0.1);
    box-shadow: 0 0 15px rgba(0, 53, 128, 0.2);
}

.tab-button:hover {
    color: #fff;
    background-color: rgba(0, 53, 128, 0.05);
}

/* Duration button styling */
.duration-btn {
    color: #ccc;
    transition: all 0.3s ease;
}

.duration-btn.active {
    color: #fff;
    background-color: #003580;
}

.duration-btn:hover {
    color: #fff;
    background-color: rgba(0, 53, 128, 0.8);
}

/* Finnish blue buttons */
.btn-finnish-blue {
    background-color: #003580 !important;
    color: #ffffff !important;
    border: 1px solid #003580 !important;
}

.btn-finnish-blue:hover {
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 53, 128, 0.3);
}

/* Price card styling */
.price-card {
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 53, 128, 0.1);
}

.price-card.featured {
    border-color: #003580;
    box-shadow: 0 0 20px rgba(0, 53, 128, 0.2);
}

/* Finnish blue accents */
.finnish-accent {
    color: #003580;
}

.finnish-bg {
    background-color: #003580;
}

.finnish-border {
    border-color: #003580;
}

/* Override any remaining Netflix red colors */
.text-netflix-red,
.text-red-600,
.text-red-500 {
    color: #003580 !important;
}

.bg-netflix-red,
.bg-red-600,
.bg-red-500 {
    background-color: #003580 !important;
}

.border-netflix-red,
.border-red-600,
.border-red-500 {
    border-color: #003580 !important;
}

/* Hover states override */
.hover\:bg-netflix-red:hover,
.hover\:bg-red-600:hover,
.hover\:bg-red-500:hover {
    background-color: #0056b3 !important;
}

.hover\:border-netflix-red:hover,
.hover\:border-red-600:hover,
.hover\:border-red-500:hover {
    border-color: #0056b3 !important;
}

/* Shadow overrides */
.shadow-netflix-red,
.shadow-red-600 {
    box-shadow: 0 4px 20px rgba(0, 53, 128, 0.3) !important;
}

/* Animation for Finnish elements */
@keyframes finnishGlow {
    0% {
        box-shadow: 0 0 5px rgba(0, 53, 128, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 53, 128, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 53, 128, 0.3);
    }
}

.finnish-glow {
    animation: finnishGlow 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-button {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .duration-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
} 