/**
 * Flavor Drops - Public Styles
 * Designed to work with Armadon theme
 */

/* Variables */
:root {
    --fd-primary: #00f5ff;
    --fd-secondary: #9d4edd;
    --fd-premium: #ffd700;
    --fd-success: #00ff88;
    --fd-danger: #ff3366;
    --fd-bg-dark: transparent;
    --fd-bg-card: rgba(30, 20, 50, 0.6);
    --fd-bg-elevated: rgba(40, 25, 70, 0.6);
    --fd-border: rgba(138, 43, 226, 0.3);
    --fd-text: #ffffff;
    --fd-text-muted: #b8a8d8;
}

/* Page Wrapper */
.fd-page-wrapper {
    background: transparent;
    min-height: 100vh;
    padding: 20px;
    color: var(--fd-text);
    width: 100%;
    max-width: 100%;
}

.fd-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.fd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.fd-title {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fd-subtitle {
    color: var(--fd-text-muted);
    margin: 5px 0 0;
}

.fd-premium-badge {
    background: linear-gradient(135deg, var(--fd-premium), #ff6b35);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.fd-upgrade-btn {
    background: linear-gradient(135deg, var(--fd-premium), #ff6b35);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fd-upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Navigation */
/* Navigation */
.fd-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(30, 20, 50, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
    align-items: center;
}

/* Main nav with dropdown */
.fd-nav-dropdown {
    position: relative;
}

.fd-nav-dropdown > .fd-nav-item {
    padding-right: 25px;
}

.fd-nav-dropdown > .fd-nav-item::after {
    content: '▼';
    font-size: 0.6rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.fd-nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(20, 15, 40, 0.98);
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 10px;
    padding: 10px;
    z-index: 100;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fd-nav-dropdown:hover .fd-nav-submenu,
.fd-nav-dropdown.active .fd-nav-submenu {
    display: block;
}

.fd-nav-submenu .fd-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 8px;
}

.fd-nav-submenu .fd-nav-item:last-child {
    margin-bottom: 0;
}

.fd-nav-submenu .fd-nav-count {
    margin-left: auto;
}

/* Generator nav item */
.fd-nav-item.fd-nav-generator {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(157, 78, 221, 0.2));
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.fd-nav-item.fd-nav-generator:hover,
.fd-nav-item.fd-nav-generator.active {
    border-color: var(--fd-primary);
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(157, 78, 221, 0.3));
}

.fd-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--fd-text-muted) !important;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.fd-nav-item:hover {
    color: var(--fd-text) !important;
    background: var(--fd-bg-elevated);
}

.fd-nav-item.active {
    color: var(--fd-text) !important;
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--fd-primary);
}

.fd-nav-count {
    background: var(--fd-primary);
    color: #000;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
}

/* Content */
.fd-content {
    margin-bottom: 40px;
}

.fd-section-title {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: var(--fd-text);
}

/* Platforms Grid */
.fd-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.fd-platform-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(30, 20, 50, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--fd-text) !important;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.fd-platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--fd-primary);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1);
}

.fd-platform-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--platform-color, var(--fd-bg-elevated));
    border-radius: 12px;
}

.fd-platform-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.fd-platform-card p {
    margin: 5px 0 0;
    color: var(--fd-text-muted);
    font-size: 0.9rem;
}

/* Generate Section */
.fd-platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--platform-color, var(--fd-bg-card));
    border-radius: 16px;
    margin-bottom: 30px;
}

.fd-platform-header .fd-platform-icon {
    font-size: 3rem;
    background: rgba(255,255,255,0.1);
}

.fd-platform-header h2 {
    margin: 0;
    font-size: 2rem;
}

.fd-generate-section {
    text-align: center;
    padding: 40px;
    background: rgba(30, 20, 50, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
}

.fd-btn-generate {
    font-size: 1.5rem;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.fd-btn-generate:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.fd-btn-generate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.fd-generate-info {
    color: var(--fd-text-muted);
    margin-top: 15px;
}

/* Cooldown */
.fd-cooldown-bar {
    width: 100%;
    max-width: 400px;
    height: 30px;
    background: var(--fd-bg-elevated);
    border-radius: 15px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.fd-cooldown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fd-primary), var(--fd-secondary));
    border-radius: 15px;
    transition: width 0.1s linear;
}

.fd-cooldown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: var(--fd-text);
}

/* Lotteries */
.fd-lotteries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.fd-lottery-card {
    padding: 25px;
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: 12px;
    position: relative;
}

.fd-lottery-card.fd-locked {
    opacity: 0.7;
}

.fd-premium-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--fd-premium), #ff6b35);
    color: #000;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 0 12px 0 12px;
    font-weight: bold;
}

.fd-lottery-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.fd-lottery-prize {
    font-size: 1.1rem;
    color: var(--fd-primary);
    margin: 0 0 15px;
}

.fd-lottery-meta {
    display: flex;
    gap: 15px;
    color: var(--fd-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Buttons */
.fd-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    width: 100%;
}

.fd-btn-primary {
    background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
    color: #fff;
}

.fd-btn-primary:hover {
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
}

.fd-btn-entered {
    background: var(--fd-success);
    color: #000;
}

.fd-btn-locked {
    background: var(--fd-bg-elevated);
    color: var(--fd-text-muted) !important;
}

.fd-btn-danger {
    background: var(--fd-danger);
    color: #fff;
}

/* Winners */
.fd-winners-list {
    background: var(--fd-bg-card);
    border-radius: 12px;
    border: 1px solid var(--fd-border);
    overflow: hidden;
}

.fd-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--fd-border);
}

.fd-winner-item:last-child {
    border-bottom: none;
}

.fd-winner-name {
    font-weight: bold;
}

.fd-winner-prize {
    color: var(--fd-primary);
}

.fd-winner-date {
    color: var(--fd-text-muted);
    font-size: 0.9rem;
}

/* Premium Section */
.fd-premium-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.fd-premium-section h2 {
    margin: 0 0 20px;
    color: var(--fd-premium);
}

.fd-premium-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.fd-premium-benefits li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.fd-premium-plans {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fd-plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--fd-text) !important;
    transition: all 0.2s;
    min-width: 120px;
}

.fd-plan:hover {
    border-color: var(--fd-premium);
    transform: translateY(-2px);
}

.fd-plan-type {
    font-size: 0.9rem;
    color: var(--fd-text-muted);
    margin-bottom: 5px;
}

.fd-plan-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--fd-premium);
}

/* Empty State */
.fd-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--fd-text-muted);
}

.fd-empty span {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

/* View All Link */
.fd-view-all {
    display: block;
    text-align: center;
    padding: 15px;
    color: var(--fd-primary) !important;
    text-decoration: none;
}

.fd-view-all:hover {
    text-decoration: underline;
}

/* Modal */
.fd-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fd-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.fd-modal-content {
    position: relative;
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-primary);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fd-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--fd-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.fd-modal-close:hover {
    color: var(--fd-text);
}

/* Drop Result */
.fd-drop-result {
    text-align: center;
}

.fd-drop-result h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.fd-drop-type {
    color: var(--fd-text-muted);
    margin-bottom: 20px;
}

.fd-drop-value {
    background: var(--fd-bg-dark);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fd-drop-value code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    color: var(--fd-primary);
    word-break: break-all;
}

.fd-drop-value p {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: var(--fd-text-muted);
}

.fd-drop-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.fd-drop-actions .fd-btn {
    flex: 1;
}

.fd-btn-copy {
    background: var(--fd-bg-elevated);
    color: var(--fd-text);
    border: 1px solid var(--fd-border);
}

.fd-btn-claim {
    background: var(--fd-success);
    color: #000;
}

.fd-btn-skip {
    background: var(--fd-bg-elevated);
    color: var(--fd-text-muted);
}

.fd-btn-report {
    background: transparent;
    color: var(--fd-danger);
    border: 1px solid var(--fd-danger);
}

/* Responsive */
@media (max-width: 768px) {
    .fd-header {
        flex-direction: column;
        text-align: center;
    }
    
    .fd-nav {
        justify-content: center;
    }
    
    .fd-platforms-grid,
    .fd-lotteries-grid {
        grid-template-columns: 1fr;
    }
    
    .fd-premium-plans {
        flex-direction: column;
    }
    
    .fd-plan {
        width: 100%;
    }
    
    .fd-drop-actions {
        flex-direction: column;
    }
}

/* Type Selection */
.fd-type-selection {
    margin-bottom: 30px;
}

.fd-type-label {
    color: var(--fd-text);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.fd-type-buttons {
    display: inline-flex;
    gap: 0;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #9d4edd;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.fd-btn-type {
    background: rgba(40, 25, 70, 0.4);
    border: 2px solid rgba(138, 43, 226, 0.3);
    color: var(--fd-text-muted);
    padding: 20px 40px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.fd-btn-type:hover {
    border-color: var(--fd-secondary);
    color: var(--fd-text);
    background: rgba(60, 35, 100, 0.5);
    transform: translateY(-2px);
}

.fd-btn-type-active {
    background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.fd-btn-type-active:hover {
    background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
}

.fd-type-count {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* Fix Claimed Button - not green */
.fd-btn-claim {
    background: rgba(40, 25, 70, 0.8);
    color: var(--fd-text);
    border: 1px solid var(--fd-primary);
}

.fd-btn-claim:hover {
    background: var(--fd-primary);
    color: #000;
}

/* Skip button more visible */
.fd-btn-skip {
    background: rgba(255, 100, 100, 0.2);
    color: #ff9999;
    border: 1px solid rgba(255, 100, 100, 0.5);
}

.fd-btn-skip:hover {
    background: rgba(255, 100, 100, 0.4);
}

/* Account credentials styling */
.fd-credential-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.fd-credential-label {
    color: var(--fd-text-muted);
    min-width: 80px;
    font-size: 0.9rem;
}

.fd-credential-row code {
    flex: 1;
    color: var(--fd-primary);
}

.fd-copy-icon {
    background: transparent;
    border: 1px solid rgba(138, 43, 226, 0.5);
    color: var(--fd-text);
    padding: 5px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.fd-copy-icon:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: var(--fd-primary);
}

/* Cooldown state for generate button */
.fd-btn-generate.fd-btn-cooldown {
    background: rgba(100, 100, 100, 0.3) !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* No items message */
.fd-no-items {
    color: var(--fd-text-muted);
    font-size: 1.1rem;
    padding: 30px;
    text-align: center;
}

/* User Stats */
.fd-user-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(30, 20, 50, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.fd-user-stats .fd-stat {
    color: var(--fd-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .fd-user-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Lottery Nav Separator */
.fd-nav-item.fd-nav-lottery {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.fd-nav-item.fd-nav-lottery:hover {
    border-color: rgba(255, 215, 0, 0.6);
}

.fd-nav-item.fd-nav-lottery.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 53, 0.3));
    border-color: #ffd700;
}

/* Events Nav */
.fd-nav-item.fd-nav-events {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 255, 0.2));
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.fd-nav-item.fd-nav-events:hover {
    border-color: rgba(0, 255, 136, 0.6);
}

.fd-nav-item.fd-nav-events.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 200, 255, 0.3));
    border-color: #00ff88;
}

/* Events Grid */
.fd-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.fd-event-card {
    background: rgba(30, 20, 50, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.fd-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00c8ff);
}

.fd-event-card.fd-event-live {
    border-color: #00ff88;
    animation: fd-pulse 2s infinite;
}

@keyframes fd-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
}

.fd-event-card.fd-event-upcoming {
    border-color: rgba(0, 200, 255, 0.5);
}

.fd-event-card.fd-event-ended {
    opacity: 0.6;
    border-color: rgba(138, 43, 226, 0.3);
}

.fd-event-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.fd-event-status.fd-status-live {
    background: #00ff88;
    color: #000;
}

.fd-event-status.fd-status-upcoming {
    background: rgba(0, 200, 255, 0.3);
    color: #00c8ff;
}

.fd-event-status.fd-status-ended {
    background: rgba(138, 43, 226, 0.3);
    color: #b8a8d8;
}

.fd-event-card h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.fd-event-game {
    color: var(--fd-primary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.fd-event-description {
    color: var(--fd-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.fd-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--fd-text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.fd-event-rewards {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.fd-event-rewards h4 {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #ffd700;
}

.fd-event-rewards ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.85rem;
}

.fd-event-rewards li {
    margin-bottom: 4px;
}

.fd-btn-join-event {
    background: linear-gradient(135deg, #00ff88, #00c8ff);
    color: #000;
    font-weight: bold;
}

.fd-btn-join-event:hover {
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.fd-btn-joined {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

/* Nav divider */
.fd-nav-divider {
    width: 1px;
    background: rgba(138, 43, 226, 0.3);
    margin: 0 10px;
    align-self: stretch;
}

/* Live indicator in nav */
.fd-nav-count.fd-nav-live {
    background: #ff4444;
    color: #fff;
    animation: fd-pulse-red 1.5s infinite;
}

@keyframes fd-pulse-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Fix ad centering */
/* Ads */
.fd-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 25px auto;
}

.fd-ad > div,
.fd-ad > iframe {
    margin: 0 auto;
}

/* Desktop only - hide on mobile */
.fd-ad.fd-desktop-only {
    display: flex;
}

/* Mobile only - hide on desktop */

.fd-ad.fd-ad-mobile.fd-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .fd-ad.fd-ad-mobile.fd-mobile-only {
        display: flex;
    }
    
    .fd-ad.fd-ad-leaderboard.fd-desktop-only {
        display: none;
    }
}

/* Faucet */
.fd-faucet-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.fd-faucet-subtitle {
    color: var(--fd-text-muted);
    margin-bottom: 30px;
}

.fd-faucet-balance {
    background: linear-gradient(135deg, rgba(255, 100, 50, 0.2), rgba(100, 50, 0, 0.2));
    border: 1px solid rgba(255, 100, 50, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.fd-faucet-balance-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.fd-faucet-balance-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.fd-faucet-balance-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

.fd-faucet-balance-value {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 5px;
}

.fd-faucet-claim {
    margin-bottom: 30px;
}

.fd-btn-faucet {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.fd-btn-faucet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.fd-btn-faucet.fd-btn-disabled {
    background: rgba(100, 100, 100, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

.fd-btn-faucet.fd-btn-disabled:hover {
    transform: none;
}

.fd-faucet-reward-info {
    color: var(--fd-text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.fd-faucet-cooldown {
    margin-top: 20px;
}

.fd-faucet-cooldown-timer {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    font-family: monospace;
}

.fd-faucet-cooldown p {
    color: var(--fd-text-muted);
    font-size: 0.9rem;
}

.fd-faucet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.fd-faucet-stat {
    background: rgba(30, 20, 50, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    padding: 15px 10px;
}

.fd-faucet-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.fd-faucet-stat-label {
    font-size: 0.75rem;
    color: var(--fd-text-muted);
    margin-top: 5px;
}

.fd-faucet-stat-bonus {
    font-size: 0.7rem;
    color: #00ff88;
    margin-top: 3px;
}

.fd-faucet-info {
    background: rgba(30, 20, 50, 0.4);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}

.fd-faucet-info h4 {
    margin: 0 0 15px 0;
    color: var(--fd-text-muted);
}

.fd-faucet-info ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.fd-faucet-info li {
    margin-bottom: 8px;
}

/* Faucet claim result */
.fd-faucet-result {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    animation: fd-pulse-green 0.5s ease;
}

.fd-faucet-result.fd-jackpot {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 150, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.5);
    animation: fd-jackpot 1s ease;
}

@keyframes fd-pulse-green {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fd-jackpot {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1); }
    75% { transform: scale(1.03); }
}

.fd-faucet-result-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #00ff88;
}

.fd-faucet-result.fd-jackpot .fd-faucet-result-amount {
    color: #ffd700;
}

/* Nav faucet style */
.fd-nav-item.fd-nav-faucet {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.fd-nav-item.fd-nav-faucet:hover,
.fd-nav-item.fd-nav-faucet.active {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
}

@media (max-width: 600px) {
    .fd-faucet-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Paid Lottery */
.fd-paid-lottery {
    border-color: rgba(255, 215, 0, 0.3);
}

.fd-lottery-prize-banner {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    font-weight: bold;
    padding: 10px;
    margin: -25px -25px 20px -25px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.fd-lottery-desc {
    color: var(--fd-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.fd-lottery-cost {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 15px 0;
}

.fd-cost-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
}

.fd-cost-currency {
    display: block;
    font-size: 0.85rem;
    color: var(--fd-text-muted);
}

.fd-lottery-user-info {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.fd-lottery-timer {
    color: var(--fd-text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.fd-lottery-buy {
    display: flex;
    gap: 10px;
}

.fd-entry-select {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.fd-lottery-limit {
    font-size: 0.75rem;
    color: var(--fd-text-muted);
    margin-top: 10px;
    text-align: center;
}

.fd-section-subtitle {
    color: var(--fd-text-muted);
    text-align: center;
    margin-bottom: 25px;
}

/* Giveaways nav */
.fd-nav-item.fd-nav-giveaways {
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.2), rgba(0, 150, 80, 0.2));
    border: 1px solid rgba(0, 200, 100, 0.3);
}

.fd-nav-item.fd-nav-giveaways:hover,
.fd-nav-item.fd-nav-giveaways.active {
    border-color: #00c864;
}
