/* ======================================
   PromptPlease Investor Relations
   Styles
   ====================================== */

/* Base Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Draft Banner - Marquee */
.draft-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    overflow: hidden;
    transition: background 0.3s ease;
}

.draft-banner:hover {
    background: rgba(255, 255, 255, 0.1);
}

.draft-banner-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.draft-banner-text {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.draft-banner-text span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.draft-banner-text .separator {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

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

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

/* Header Adjustment for Banner */
header {
    top: 36px !important;
    border-radius: 0 0 16px 16px;
}

/* Main Content Adjustment */
main {
    padding-top: 100px !important;
}

/* Global Rounded Corners - Override Tailwind */
.rounded-lg {
    border-radius: 16px !important;
}

.rounded-md {
    border-radius: 12px !important;
}

/* Cards Hover Effects */
.card-hover,
.bg-white\/5 {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.card-hover:hover,
.bg-white\/5:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.05);
}

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

/* Button Hover States */
.btn-primary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.02);
}

.btn-secondary {
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Stat Card Animation */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

/* Phase Cards */
.phase-card {
    transition: all 0.3s ease;
}

.phase-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Footer Links */
footer a {
    transition: color 0.2s ease;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Selection Color */
::selection {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .draft-banner {
        padding: 6px 0;
    }

    .draft-banner-text {
        font-size: 11px;
        gap: 32px;
        padding-right: 32px;
    }

    header {
        top: 32px !important;
    }

    main {
        padding-top: 80px !important;
    }
}