@font-face {
    font-family: 'Vonique 43';
    src: url('../fonts/Vonique 43_D.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/centurygothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/centurygothic_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Base resets & typography */
body {
    font-family: 'Century Gothic', sans-serif;
}

h1, h2, h3, .font-primary {
    font-family: 'Century Gothic', 'Outfit', sans-serif;
    font-weight: 700;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #081F30;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #FEC600;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #e5b200;
}

/* Custom Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes radar-pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
.animate-radar {
    animation: radar-pulse 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Glow & Glassmorphism effects */
.shadow-glow-yellow {
    box-shadow: 0 0 20px rgba(254, 198, 0, 0.45);
}
.shadow-glow-yellow-hover:hover {
    box-shadow: 0 0 30px rgba(254, 198, 0, 0.65);
}
.shadow-glow-navy {
    box-shadow: 0 0 25px rgba(8, 31, 48, 0.8);
}
.glass-panel {
    background: rgba(13, 32, 49, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px border rgba(255, 255, 255, 0.05);
}
.glass-panel-hover:hover {
    border-color: rgba(254, 198, 0, 0.25);
    background: rgba(13, 32, 49, 0.85);
}

/* Background blur ambient lights */
.glow-blur-yellow {
    background: rgba(254, 198, 0, 0.08);
    filter: blur(120px);
}
.glow-blur-blue {
    background: rgba(13, 32, 49, 0.5);
    filter: blur(150px);
}

/* Phone Mockup Frame */
.phone-mockup {
    position: relative;
    width: 250px;
    height: 520px;
    background: #000;
    border: 10px solid #1e293b; /* slate-800 frame */
    border-radius: 36px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), inset 0 0 10px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 18px;
    background: #000;
    border-radius: 9px;
    z-index: 30;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 20;
}

.phone-mockup:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #FEC600; /* highlights with gold on hover */
    box-shadow: 0 30px 60px -15px rgba(254, 198, 0, 0.2), 0 0 20px rgba(254, 198, 0, 0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
}

