/* Custom CSS for POON Website */

/* Custom Font */
@font-face {
    font-family: 'Kitto';
    src: url('font/Kitto-PersonalUse.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Apply custom font to all text */
* {
    font-family: 'Kitto', sans-serif;
}

/* Marquee Animations */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee-reverse {
    animation: marquee-reverse 30s linear infinite;
}

/* Fade Animations */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

/* Slide Animations */
.slide-in {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.slide-out {
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
}

/* Custom Button Styles */
.bonk-button {
    background: linear-gradient(to right, #00d0fc, #00d0fc);
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.bonk-button:hover {
    background: linear-gradient(to right, #00b8e0, #00b8e0);
    transform: scale(1.05);
    border: 2px solid #000000;
}

.toss-button {
    background: linear-gradient(to right, #00d0fc, #00d0fc);
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.toss-button:hover {
    background: linear-gradient(to right, #00b8e0, #00b8e0);
    transform: scale(1.05);
    border: 2px solid #000000;
}

/* Character Card Hover Effects */
.character-card {
    transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    backdrop-filter: blur(5px);
}

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

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

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

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

/* Responsive Text Sizes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-meme {
        font-size: 1.25rem;
    }
}

@media (min-width: 769px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-meme {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Gradient Text with Stroke */
.gradient-text {
    background: linear-gradient(to right, #00d0fc, #00d0fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
}

/* Text Colors */
.hero-title {
    color: #000000;
}

.hero-subtitle {
    color: #000000;
}

.hero-meme {
    color: #000000;
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Bounce Animation */
.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.glow:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

/* Custom Focus Styles */
.focus-ring:focus {
    outline: 2px solid #fea53d;
    outline-offset: 2px;
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text Selection */
::selection {
    background: #fea53d;
    color: white;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}