/* Star Joker - Custom Styles */

/* Fonts */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* Text Gradient - Purple/Pink theme */
.text-gradient {
    background: linear-gradient(135deg, #a855f7, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Button hover effects */
button, a {
    transition: all 0.3s ease;
}

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

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

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

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

/* Selection color */
::selection {
    background: rgba(168, 85, 247, 0.5);
    color: white;
}

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

/* Header logo sizing */
header img {
    max-height: 48px;
    width: auto;
}

/* Footer logo sizing */
footer img {
    max-height: 40px;
    width: auto;
}

/* Mobile Menu Transitions */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Backdrop blur support */
@supports (backdrop-filter: blur(12px)) {
    header {
        backdrop-filter: blur(12px);
    }
}

/* Aspect ratio fallback for older browsers */
.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

@supports not (aspect-ratio: 4 / 3) {
    .aspect-\[4\/3\]::before {
        content: "";
        float: left;
        padding-top: 75%;
    }
    .aspect-\[4\/3\]::after {
        content: "";
        display: block;
        clear: both;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 3rem;
    }
    
    .text-gradient {
        font-size: inherit;
    }
}

/* Print styles */
@media print {
    header, footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Prose styling for content */
.prose p {
    margin-bottom: 1rem;
}

.prose strong {
    color: #e2e8f0;
}

/* Table styling */
table {
    width: 100%;
}

table th {
    text-align: left;
}

