/* PromoPilot Banner Styles */
:root {
    --pp-primary: #6366f1;
    --pp-secondary: #ec4899;
    --pp-accent: #8b5cf6;
    --pp-dark: #0f172a;
    --pp-text: #f8fafc;
    --pp-text-muted: #cbd5e1;
}

.promopilot-admin-notice {
    background: linear-gradient(135deg, var(--pp-dark) 0%, #1e293b 100%);
    color: var(--pp-text);
    border: none;
    border-left: 4px solid var(--pp-secondary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    margin: 20px 20px 0 2px;
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.promopilot-admin-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pp-secondary), transparent);
    opacity: 0.5;
}

.promopilot-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    z-index: 1;
}

.promopilot-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promopilot-logo-text {
    font-weight: 800;
    font-size: 1.2em;
    background: linear-gradient(to right, #fff, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.promopilot-badge {
    background: var(--pp-secondary);
    color: white;
    font-size: 0.7em;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    animation: pulse 2s infinite;
}

.promopilot-message {
    flex-grow: 1;
    margin: 0 20px;
    font-size: 0.95em;
    color: var(--pp-text-muted);
}

.promopilot-message strong {
    color: #fff;
    font-weight: 600;
}

.promopilot-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.promopilot-btn {
    background: linear-gradient(135deg, var(--pp-primary), var(--pp-accent));
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.promopilot-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    color: white;
}

.promopilot-dismiss {
    background: transparent;
    border: none;
    color: var(--pp-text-muted);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.2s;
}

.promopilot-dismiss:hover {
    color: #fff;
}

.promopilot-dashboard-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promopilot-dashboard-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.promopilot-dashboard-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.promopilot-info h2 {
    font-size: 2em;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
}

.promopilot-info p {
    font-size: 1.1em;
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.6;
}

.promopilot-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.promopilot-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promopilot-visual {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promopilot-visual-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pp-primary), var(--pp-secondary));
    position: absolute;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.promopilot-visual-circle::before {
    content: '5000';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 900;
    font-size: 1.4em;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.9), 0 0 25px rgba(236, 72, 153, 0.6), 0 3px 10px rgba(0, 0, 0, 0.7), 0 0 5px rgba(255, 255, 255, 0.9);
    letter-spacing: -1px;
}

.promopilot-visual-circle.small {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 30px;
    background: var(--pp-accent);
    animation-delay: 1s;
    font-size: 0.8em;
}

.promopilot-visual-circle.small::before {
    content: '50';
    font-weight: 900;
    font-size: 1.3em;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.9), 0 0 20px rgba(139, 92, 246, 0.6), 0 3px 8px rgba(0, 0, 0, 0.7), 0 0 4px rgba(255, 255, 255, 0.9);
}

.promopilot-visual-circle.tiny {
    width: 25px;
    height: 25px;
    bottom: 30px;
    left: 40px;
    background: var(--pp-secondary);
    animation-delay: 2s;
    font-size: 0.6em;
}

.promopilot-visual-circle.tiny::before {
    content: '5';
    font-weight: 900;
    font-size: 1.2em;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.9), 0 0 18px rgba(236, 72, 153, 0.6), 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 3px rgba(255, 255, 255, 0.9);
}

.promopilot-sidebar-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.promopilot-sidebar-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promopilot-sidebar-title {
    font-size: 1.35em;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    line-height: 1.2;
}

.promopilot-sidebar-text {
    font-size: 0.9em;
    color: #cbd5e1;
    line-height: 1.5;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.promopilot-sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--pp-primary), var(--pp-accent));
    padding: 10px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.promopilot-sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    color: white;
}

.pp-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.pp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}

.pp-orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pp-secondary), transparent);
    top: -50px;
    right: 10%;
    animation: pp-float-orb 15s infinite alternate ease-in-out;
}

.pp-orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--pp-primary), transparent);
    bottom: -30px;
    left: 20%;
    animation: pp-float-orb 12s infinite alternate-reverse ease-in-out;
}

.pp-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.pp-star-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 25%;
    animation: pp-twinkle 3s infinite ease-in-out;
}

.pp-star-2 {
    width: 3px;
    height: 3px;
    top: 40%;
    right: 30%;
    animation: pp-twinkle 4s infinite ease-in-out;
}

.pp-star-3 {
    width: 5px;
    height: 5px;
    bottom: 20%;
    left: 40%;
    animation: pp-twinkle 2.5s infinite ease-in-out;
}

.pp-atom-path {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pp-atom {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    animation: pp-orbit 6s linear infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 rgba(236, 72, 153, 0.4); }
    70% { box-shadow: 0 0 20px rgba(236, 72, 153, 0); }
    100% { box-shadow: 0 0 0 rgba(236, 72, 153, 0); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes pp-float-orb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

@keyframes pp-twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.8; }
}

@keyframes pp-orbit {
    from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}
