/* Custom CSS for Free Stripchat Tokens Website */
/* Ogólne tło i typografia */
body {
    background-color: #0f0f0f !important;
    color: #e0e0e0 !important;
    font-family: 'Roboto', sans-serif;
}

/* Nagłówek / navbar */
.navbar {
    background-color: #121212 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.navbar-brand,
.navbar-nav .nav-link {
    color: #ffffff !important;
}
.navbar-nav .nav-link:hover {
    color: #ff4d94 !important;
}

/* Hero section */
.hero-section {
    background: linear-gradient(120deg, #121212 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}
.hero-section h1,
.hero-section p {
    color: white;
}
.btn-warning {
    background-color: #ff4d94 !important;
    border-color: #ff4d94 !important;
    color: white !important;
}
.btn-warning:hover {
    background-color: #ff2a7d !important;
    border-color: #ff2a7d !important;
}
.btn-outline-light {
    color: white !important;
    border-color: #ff4d94 !important;
}
.btn-outline-light:hover {
    background-color: #ff4d94 !important;
    color: white !important;
}

/* Artykuł i treść */
.main-article h2,
.main-article h3,
.main-article h4,
.main-article h5 {
    color: white;
}
.article-content p,
.article-content li {
    color: #e0e0e0;
}
.benefit-card {
    background-color: #1a1a1a;
    border-left: 3px solid #ff4d94;
}
.benefit-card h5 {
    color: white;
}
.benefit-card p {
    color: #ccc;
}

/* Token generator */
.token-generator {
    background-color: #1a1a1a;
    border: 1px solid #333;
}
.token-generator h3,
.token-generator p,
.token-generator label {
    color: white;
}
.form-control,
.form-select {
    background-color: #222 !important;
    color: white !important;
    border: 1px solid #444 !important;
}
.form-control::placeholder {
    color: #888 !important;
}

/* Sidebar */
.sidebar-widget {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.sidebar-widget h4 {
    color: white;
    border-bottom: 2px solid #ff4d94;
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.sidebar-link {
    color: #e0e0e0 !important;
    text-decoration: none;
    display: block;
    padding: 6px 0;
}
.sidebar-link:hover {
    color: #ff4d94 !important;
}
.tips-list-sidebar li,
.testimonial p {
    color: #ccc;
}

/* Footer */
.footer {
    background-color: #121212;
    color: #aaa;
    padding: 20px 0;
    border-top: 1px solid #222;
}
.footer p {
    color: #aaa !important;
}

/* Ikony Font Awesome – lekko podświetlone */
.fas.fa-coins,
.fas.fa-star,
.fas.fa-rocket,
.fas.fa-lightbulb {
    color: #ff4d94 !important;
}
.countdown-timer {
    animation: pulseHighlight 1.5s infinite alternate;
}

@keyframes pulseHighlight {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.03);
        opacity: 0.9;
    }
}

.countdown-timer .badge {
    background-color: #ff2a7d !important;
    color: white !important;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 77, 148, 0.7);
}
@keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 77, 148, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(255, 77, 148, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 77, 148, 0);
    }
  }

  .pulse-button {
    position: relative;
    animation: pulse 2s infinite;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
  }

  .pulse-button:hover {
    transform: scale(1.05);
    background-color: #ff2a7d !important;
    box-shadow: 0 0 20px rgba(255, 77, 148, 0.6) !important;
  }

/* Alert */
.alert-warning {
    background-color: #2a1a20 !important;
    border-color: #ff4d94 !important;
    color: #ffccd5 !important;
}
.alert-warning h5 {
    color: #ff4d94 !important;
}
:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-gold: #FFD700;
    --text-light: #ffffff;
    --text-muted: #b8b9ba;
    --gradient-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 215, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FFD700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23FF6B35;stop-opacity:0.1"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23bg)"/></svg>');
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-light);
    padding-top: 80px;
}

.hero-section h1 {
    background: linear-gradient(45deg, var(--accent-gold), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Main Content */
.main-article {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-meta .badge {
    font-size: 0.9rem;
}

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.featured-image img,
.mobile-screenshot img {
    border: 3px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

.featured-image img:hover,
.mobile-screenshot img:hover {
    transform: scale(1.02);
}

/* Benefits Grid */
.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.benefit-card h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Method Cards */
.method-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.method-title {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Video Container */
.video-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.video-container iframe {
    border-radius: 10px;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    background: var(--card-bg);
    border-left: 4px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.tips-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

/* FAQ Section */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.faq-item h5 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Token Generator */
.token-generator {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.token-generator .form-control,
.token-generator .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 10px;
}

.token-generator .form-control:focus,
.token-generator .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.token-generator .form-control::placeholder {
    color: var(--text-muted);
}

.max-width-400 {
    max-width: 400px;
}

/* Sidebar */
.sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.widget-title {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.sidebar-link {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    transform: translateX(10px);
}

.tips-list-sidebar {
    list-style: none;
    padding: 0;
}

.tips-list-sidebar li {
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
}

.testimonial {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.testimonial footer {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 2px solid var(--accent-gold);
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .main-article {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .sidebar {
        padding-left: 0;
    }
    
    .sidebar-widget {
        margin-bottom: 2rem;
    }
    
    .method-card {
        padding: 1.5rem 1rem;
    }
    
    .video-container {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .main-article {
        padding: 1.5rem 1rem;
    }
    
    .method-card,
    .video-container,
    .sidebar-widget {
        padding: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .pulse-animation {
        animation: none;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}

/* Alert Styling */
.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--card-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.cta-section h3 {
    color: var(--accent-gold);
}

.cta-section .text-warning {
    color: var(--accent-gold) !important;
    text-decoration: none;
    font-weight: 600;
}

.cta-section .text-warning:hover {
    text-decoration: underline;
}