/* JackpotPlusFrance.com - Custom Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
}

/* Smooth transitions */
a, button, .card, .shadow-md {
    transition: all 0.3s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card hover effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Alert box animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-animate {
    animation: slideIn 0.5s ease-out;
}

/* Button pulse effect for urgent help */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.btn-help-pulse {
    animation: pulse 2s infinite;
}

/* Responsive utilities */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    a {
        text-decoration: underline;
        color: #1f2937;
    }
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Loading animation */
.loader {
    border: 3px solid #f3f4f6;
    border-top: 3px solid #10b981;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

/* ANJ Badge styles */
.anj-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

/* Warning badge */
.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

/* Custom utilities */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Highlight important disclaimers */
.disclaimer-important {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.disclaimer-important h3 {
    color: #991b1b;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Interactive elements */
.interactive-card {
    cursor: pointer;
    user-select: none;
}

.interactive-card:active {
    transform: scale(0.98);
}

/* ANJ verification badge */
.verified-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #10b981;
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.verified-badge::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    font-weight: bold;
}

/* Illegal site warning */
.illegal-warning {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    border-radius: 0.5rem;
    color: #991b1b;
}

.illegal-warning::before {
    content: '⚠';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #dc2626;
}

/* Help hotline prominent display */
.help-hotline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}

.help-hotline .phone-number {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 1rem 0;
}

/* Easter egg for responsible gaming reminder */
@media (prefers-reduced-motion: no-preference) {
    .responsible-reminder {
        animation: gentle-pulse 3s ease-in-out infinite;
    }
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
