/* ========================================
   SENNIK - COMPONENTS CSS
   Specific Components & Modals
   ======================================== */

/* Premium Modal */
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.premium-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 11, 61, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1A0B3D 0%, #2D1B4E 100%);
    border: 2px solid rgba(139, 126, 200, 0.3);
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(139, 126, 200, 0.4);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(139, 126, 200, 0.2);
}

.modal-header h3 {
    color: #8B7EC8;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: #E8E3F3;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(139, 126, 200, 0.2);
    color: #FFD700;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #E8E3F3;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Premium Features */
.premium-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 126, 200, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 126, 200, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature span:last-child {
    color: #E8E3F3;
    font-weight: 500;
}

/* Premium Form */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-textarea {
    background: rgba(26, 11, 61, 0.8);
    border: 2px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    min-height: 120px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    border-color: #8B7EC8;
    box-shadow: 0 0 20px rgba(139, 126, 200, 0.3);
}

.form-textarea::placeholder {
    color: rgba(232, 227, 243, 0.6);
}

.form-input {
    background: rgba(26, 11, 61, 0.8);
    border: 2px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #8B7EC8;
    box-shadow: 0 0 20px rgba(139, 126, 200, 0.3);
}

.form-input::placeholder {
    color: rgba(232, 227, 243, 0.6);
}

.form-submit {
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    color: #1A0B3D;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    margin-top: 100px;
    background: rgba(26, 11, 61, 0.5);
    border-bottom: 1px solid rgba(139, 126, 200, 0.2);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #E8E3F3;
    opacity: 0.8;
}

.breadcrumb-item a {
    color: #8B7EC8;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FFD700;
    opacity: 1;
}

.breadcrumb-separator {
    color: #8B7EC8;
    opacity: 0.6;
}

/* Content Cards */
.content-card {
    background: rgba(26, 11, 61, 0.6);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover::before {
    opacity: 1;
}

.content-card h1,
.content-card h2,
.content-card h3 {
    color: #8B7EC8;
}

.content-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-card p {
    color: #E8E3F3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Symbol Icon */
.symbol-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(139, 126, 200, 0.3);
    line-height: 1;
    text-align: center;
}

/* Interpretation Sections */
.interpretation-section {
    margin-bottom: 3rem;
}

.interpretation-section h2 {
    color: #8B7EC8;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.interpretation-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.interpretation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.interpretation-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #E8E3F3;
    line-height: 1.6;
}

.interpretation-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #FFD700;
}

/* Related Dreams */
.related-dreams {
    background: rgba(26, 11, 61, 0.8);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.related-dreams h3 {
    color: #8B7EC8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.related-item {
    background: rgba(139, 126, 200, 0.1);
    border: 1px solid rgba(139, 126, 200, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 5px 15px rgba(139, 126, 200, 0.3);
}

.related-item .dream-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1 !important;
}

.related-item h4 {
    color: #8B7EC8;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.related-item p {
    color: #E8E3F3;
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* Search Results */
.search-results {
    margin-top: 2rem;
}

.search-result-item {
    background: rgba(26, 11, 61, 0.6);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 5px 15px rgba(139, 126, 200, 0.3);
}

.search-result-title {
    color: #8B7EC8;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.search-result-desc {
    color: #E8E3F3;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.search-result-url {
    color: #FFD700;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 126, 200, 0.3);
    border-radius: 50%;
    border-top-color: #8B7EC8;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cosmic Decorations */
.cosmic-decoration {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.star {
    color: #FFD700;
    opacity: 0.6;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.cosmic-decoration:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.cosmic-decoration:nth-child(2) { top: 20%; right: 30%; animation-delay: 0.5s; }
.cosmic-decoration:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 1s; }
.cosmic-decoration:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    color: #1A0B3D;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 126, 200, 0.4);
    font-weight: 600;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification-toast.show {
    transform: translateX(0);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(139, 126, 200, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Highlight Text */
.highlight {
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    color: #FFD700;
    font-weight: 600;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(135deg, transparent 0%, #8B7EC8 50%, transparent 100%);
    margin: 2rem 0;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1A0B3D;
    z-index: 1000;
    transition: all 0.3s ease;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

/* Tabs */
.tab-container {
    margin-bottom: 2rem;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid rgba(139, 126, 200, 0.3);
    margin-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: #E8E3F3;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #8B7EC8;
    border-bottom-color: #8B7EC8;
}

.tab-btn:hover {
    color: #FFD700;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Accordion */
.accordion-item {
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: rgba(26, 11, 61, 0.8);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(139, 126, 200, 0.1);
}

.accordion-title {
    color: #8B7EC8;
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    color: #FFD700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.open .accordion-content {
    padding: 1rem;
    max-height: 1000px;
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 11, 61, 0.95);
    color: #E8E3F3;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(139, 126, 200, 0.3);
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 5px solid rgba(26, 11, 61, 0.95);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
}

/* Interactive Dream Cards */
.interactive-card {
    position: relative;
    transition: all 0.3s ease;
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 126, 200, 0.3);
}

.dream-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dream-category {
    font-size: 0.85rem;
    color: #FFD700;
    font-weight: 500;
    opacity: 0.9;
}

.load-more-section {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #8B7EC8 0%, #6A5ACD 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 126, 200, 0.3);
}

/* Numbers Section */
.numbers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A0B3D 100%);
}

.numbers-section .section-subtitle {
    color: #E6E6FA;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.number-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.number-display {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.number-title {
    color: #E6E6FA;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.number-desc {
    color: #B8B8D1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.special-number {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

.special-number:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
}

.number-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.number-cta h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.number-cta p {
    color: #E6E6FA;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.number-calculator-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A0B3D;
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.number-calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Number Calculator Modal */
.number-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 11, 61, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.number-modal.active {
    opacity: 1;
    visibility: visible;
}

.number-calculator {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.number-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #E6E6FA;
    font-family: inherit;
    font-size: 1.1rem;
    text-align: center;
}

.number-input::placeholder {
    color: rgba(230, 230, 250, 0.6);
}

.calculate-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A0B3D;
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.number-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.number-result h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.result-main {
    color: #E6E6FA;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.result-details {
    color: #B8B8D1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.result-actions {
    text-align: center;
}

.premium-interpretation-btn {
    background: linear-gradient(135deg, #8B7EC8 0%, #6A5ACD 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.premium-interpretation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 126, 200, 0.3);
}

/* Search Card */
.search-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 126, 200, 0.1) 100%);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 250px;
    transition: all 0.3s ease;
}

.search-card:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(139, 126, 200, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.search-card .search-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #8B7EC8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-trigger-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A0B3D;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    outline: none;
}

.search-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* About Sennik Section */
.about-sennik {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A0B3D 100%);
}

.about-sennik .section-subtitle {
    color: #E6E6FA;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-sennik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-sennik-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 126, 200, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-sennik-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(139, 126, 200, 0.2);
}

.about-sennik-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-sennik-item h3 {
    color: #8B7EC8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-sennik-item p {
    color: #E6E6FA;
    line-height: 1.6;
    opacity: 0.9;
}

.about-sennik-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-sennik-cta h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-sennik-cta p {
    color: #E6E6FA;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.search-focus-btn {
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    color: #1A0B3D;
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-focus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 126, 200, 0.4);
}

/* Alphabetical Pages Styles */
.symbols-section {
    margin: 3rem 0;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.symbol-card {
    background: rgba(26, 11, 61, 0.6);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: block;
}

.symbol-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(139, 126, 200, 0.3);
}

.symbol-card .symbol-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.symbol-card h3 {
    color: #8B7EC8;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.symbol-card p {
    color: #E8E3F3;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.symbol-popularity {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Complete List Section */
.complete-list-section {
    margin: 4rem 0;
}

.alphabetical-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.letter-column ul {
    list-style: none;
    padding: 0;
}

.letter-column li {
    margin-bottom: 0.5rem;
}

.letter-column a {
    color: #E8E3F3;
    text-decoration: none;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.letter-column a:hover {
    color: #FFD700;
    border-left-color: #8B7EC8;
    background: rgba(139, 126, 200, 0.1);
    padding-left: 1.5rem;
}

/* Alphabet Navigation */
.alphabet-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.letter-link {
    background: rgba(26, 11, 61, 0.6);
    border: 1px solid rgba(139, 126, 200, 0.3);
    color: #8B7EC8;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.letter-link:hover,
.letter-link.active {
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    color: #1A0B3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(26, 11, 61, 0.3);
    padding: 1rem 0;
    margin-top: 100px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    color: #E8E3F3;
    opacity: 0.8;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #8B7EC8;
}

.breadcrumb-list a {
    color: #8B7EC8;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: #FFD700;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header .symbol-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.page-header h1 {
    color: #8B7EC8;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #E8E3F3;
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ALPHABET SECTION
   ======================================== */

.alphabet-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.3) 0%, rgba(26, 11, 61, 0.5) 100%);
    border-top: 1px solid rgba(139, 126, 200, 0.2);
    border-bottom: 1px solid rgba(139, 126, 200, 0.2);
}

.alphabet-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
}

.alphabet-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.5rem 1rem !important;
    background: rgba(139, 126, 200, 0.1) !important;
    border: 2px solid rgba(139, 126, 200, 0.3) !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    min-height: 100px !important;
}

.alphabet-card:hover {
    transform: translateY(-3px) !important;
    background: rgba(139, 126, 200, 0.2) !important;
    border-color: #8B7EC8 !important;
    box-shadow: 0 8px 25px rgba(139, 126, 200, 0.3) !important;
}

.alphabet-letter {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #8B7EC8 !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Playfair Display', serif !important;
}

.alphabet-desc {
    font-size: 0.85rem !important;
    color: #E8E3F3 !important;
    opacity: 0.9 !important;
    text-align: center !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
}

/* ========================================
   NUMBER PAGES STYLES
   ======================================== */

/* Number Header */
.number-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 126, 200, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.number-symbol {
    flex-shrink: 0;
}

.number-display-large {
    font-size: 4rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.number-info {
    flex: 1;
}

.number-title {
    font-size: 2.5rem;
    color: #8B7EC8;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.number-subtitle {
    font-size: 1.3rem;
    color: #E6E6FA;
    margin-bottom: 1rem;
    font-weight: 500;
}

.number-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.number-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Interpretation Sections */
.interpretation-section {
    margin-bottom: 2rem;
}

.interpretation-section h2 {
    color: #8B7EC8;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.interpretation-text {
    color: #E6E6FA;
    line-height: 1.7;
    font-size: 1.1rem;
}

.spiritual-content,
.psychological-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.spiritual-icon,
.psychological-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Related Numbers */
.related-numbers {
    margin: 3rem 0;
}

.related-numbers .numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-numbers .number-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-numbers .number-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

/* Alphabet Navigation */
.alphabet-navigation {
    margin: 3rem 0;
}

.alphabet-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 0.5rem;
    margin-top: 2rem;
}

.alphabet-nav-item {
    background: rgba(139, 126, 200, 0.2);
    color: #8B7EC8;
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.alphabet-nav-item:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    transform: translateY(-2px);
}

/* Premium Card for Numbers */
.premium-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 126, 200, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.premium-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.premium-card p {
    color: #E6E6FA;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Additional styles for expanded number content */
.practical-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.practical-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.interpretation-text br {
    margin-bottom: 1rem;
}

.interpretation-text {
    line-height: 1.8;
}

.number-header .number-display-large {
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}
/* ========================================
   CATEGORY PAGES STYLES
   ======================================== */

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-icon-large {
    font-size: 4rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #E8E3F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(139, 126, 200, 0.3));
}

.category-info h1 {
    margin: 0 0 0.5rem 0;
    color: #E8E3F3;
    font-size: 2.5rem;
}

.category-description {
    color: #B8B3C8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.category-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    color: #B8B3C8;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #2D1B4E 0%, #3A2A5C 100%);
    border: 1px solid rgba(139, 126, 200, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 126, 200, 0.3);
    border-color: rgba(139, 126, 200, 0.5);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B7EC8, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(139, 126, 200, 0.3));
}

.category-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #E8E3F3;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-desc {
    color: #B8B3C8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: center;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #8B7EC8;
}

/* Subcategories */
.subcategories-section {
    margin-bottom: 3rem;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.subcategory-card {
    background: linear-gradient(135deg, #1A0B3D 0%, #2D1B4E 100%);
    border: 1px solid rgba(139, 126, 200, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.subcategory-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(139, 126, 200, 0.2);
    border-color: rgba(139, 126, 200, 0.4);
}

.subcategory-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subcategory-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #E8E3F3;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subcategory-desc {
    color: #B8B3C8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subcategory-count {
    font-size: 0.8rem;
    color: #8B7EC8;
    text-align: center;
}

/* Symbols Grid */
.symbols-section {
    margin-bottom: 3rem;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.symbol-card {
    background: linear-gradient(135deg, #1A0B3D 0%, #2D1B4E 100%);
    border: 1px solid rgba(139, 126, 200, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.symbol-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(139, 126, 200, 0.2);
    border-color: rgba(139, 126, 200, 0.4);
}

.symbol-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.symbol-name {
    font-size: 1rem;
    font-weight: bold;
    color: #E8E3F3;
    margin-bottom: 0.3rem;
}

.symbol-desc {
    color: #B8B3C8;
    font-size: 0.85rem;
}

/* Featured Categories */
.featured-categories {
    margin-top: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.featured-card {
    background: linear-gradient(135deg, #2D1B4E 0%, #1A0B3D 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #8B7EC8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.featured-card:hover::before {
    transform: scaleX(1);
}

.featured-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.featured-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.featured-desc {
    color: #B8B3C8;
    font-size: 0.9rem;
}

/* Back to Category */
.back-to-category {
    margin-top: 3rem;
    text-align: center;
}

.back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B7EC8 0%, #6A5ACD 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 126, 200, 0.4);
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7EC8 100%);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    color: #E8E3F3;
    margin-bottom: 1rem;
}

.page-description {
    color: #B8B3C8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon-large {
        font-size: 3rem;
    }
    
    .category-info h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-stats, .page-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
    
    .symbols-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Section Spacing Fix */
.premium-interpretation,
.premium-card {
    padding: 3rem !important;
}

.premium-interpretation h3,
.premium-card h3 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
}

.premium-interpretation p,
.premium-card p {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.premium-btn {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.2rem !important;
    margin-top: 1rem !important;
}

.premium-btn .premium-icon {
    font-size: 1.4rem !important;
    margin-right: 0.5rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-interpretation,
    .premium-card {
        padding: 2rem 1.5rem !important;
    }
    
    .premium-interpretation h3,
    .premium-card h3 {
        font-size: 1.6rem !important;
    }
    
    .premium-interpretation p,
    .premium-card p {
        font-size: 1.1rem !important;
    }
}

/* Icon Centering Fixes - Complete Override */
.dream-card .dream-icon,
.symbol-card .symbol-icon {
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-size: 3rem !important;
    text-align: center !important;
    vertical-align: baseline !important;
    /* Force emoji to center vertically */
    font-style: normal !important;
    font-weight: normal !important;
    /* Override any inherited spacing */
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
}

/* Smaller icons for category pages */
.symbol-card .symbol-icon {
    width: 80px !important;
    height: 80px !important;
    font-size: 2.5rem !important;
}

/* Remove background from special cards */
.alphabet-card .dream-icon,
.number-card .dream-icon {
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Force proper centering for ALL icon containers */
.dream-icon,
.symbol-icon {
    position: relative !important;
}

/* Center the emoji content exactly */
.dream-icon::before,
.symbol-icon::before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

/* Override any margins on emoji characters */
.dream-icon,
.symbol-icon {
    /* Force all content to center */
    box-sizing: border-box !important;
}

/* Fix for main.css dream-icon */
.dream-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Hero */
.blog-hero {
    padding: 6rem 0 4rem;
    margin-top: 100px;
    background: rgba(26, 11, 61, 0.3);
    text-align: center;
}

.blog-title {
    font-size: 3rem;
    color: #8B7EC8;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #E8E3F3;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Articles Grid */
.blog-articles {
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-card {
    background: rgba(26, 11, 61, 0.6);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(139, 126, 200, 0.3);
}

.article-card.featured {
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    padding: 2.5rem;
}

.article-card.featured::before {
    content: '⭐ Wyróżniony artykuł';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A0B3D;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-card.featured .article-title {
    font-size: 2rem;
}

.article-card.featured .article-excerpt {
    font-size: 1.2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-category {
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    color: #1A0B3D;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date {
    color: #E8E3F3;
    opacity: 0.7;
    font-size: 0.9rem;
}

.article-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-title a {
    color: #8B7EC8;
    text-decoration: none;
    font-weight: 600;
}

.article-title a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.article-excerpt {
    color: #E8E3F3;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(139, 126, 200, 0.2);
    color: #8B7EC8;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.read-more {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.read-more:hover {
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Newsletter Signup */
.newsletter-signup {
    background: rgba(26, 11, 61, 0.8);
    padding: 3rem 0;
    text-align: center;
}

.newsletter-content h3 {
    color: #8B7EC8;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #E8E3F3;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 25px;
    background: rgba(26, 11, 61, 0.6);
    color: #E8E3F3;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: #1A0B3D;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Article Content */
.article-content {
    padding: 4rem 0 2rem;
    margin-top: 100px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 126, 200, 0.2);
}

.article-header .article-title {
    font-size: 2.5rem;
    color: #8B7EC8;
    margin-bottom: 1.5rem;
}

.article-header .article-excerpt {
    font-size: 1.2rem;
    color: #E8E3F3;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.article-body {
    color: #E8E3F3;
    line-height: 1.8;
}

.article-body h2 {
    color: #8B7EC8;
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.article-body h3 {
    color: #8B7EC8;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.article-body h4 {
    color: #FFD700;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.article-body ul, .article-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: #FFD700;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-content h3 {
    color: #8B7EC8;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #E8E3F3;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    color: #1A0B3D;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Related Articles */
.related-articles {
    padding: 3rem 0;
    background: rgba(26, 11, 61, 0.3);
}

.related-articles h3 {
    color: #8B7EC8;
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-item {
    background: rgba(26, 11, 61, 0.6);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.5);
}

.related-item h4 {
    margin-bottom: 0.5rem;
}

.related-item h4 a {
    color: #8B7EC8;
    text-decoration: none;
}

.related-item h4 a:hover {
    color: #FFD700;
}

.related-item p {
    color: #E8E3F3;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0 2rem;
        margin-top: 90px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .articles-grid {
        max-width: 95%;
        gap: 1.5rem;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .article-card {
        padding: 1.5rem;
    }
    
    .article-content {
        padding: 2rem 0 2rem;
        margin-top: 90px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .article-header .article-title {
        font-size: 2rem;
    }
    
    .article-header .article-excerpt {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Zobacz także section */
.see-also-section {
    background: rgba(139, 126, 200, 0.1);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.see-also-section h3 {
    color: #8B7EC8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.see-also-links {
    color: #E8E3F3;
    line-height: 1.6;
}

.see-also-links a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.see-also-links a:hover {
    color: #FFA500;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .see-also-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .see-also-section h3 {
        font-size: 1.3rem;
    }
}

/* Zobacz także section */
.see-also-section {
    background: rgba(139, 126, 200, 0.1);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.see-also-section h3 {
    color: #8B7EC8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.see-also-links {
    color: #E8E3F3;
    line-height: 1.6;
}

.see-also-links a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.see-also-links a:hover {
    color: #FFA500;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .see-also-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .see-also-section h3 {
        font-size: 1.3rem;
    }
}

/* Zobacz także section */
.see-also-section {
    background: rgba(139, 126, 200, 0.1);
    border: 1px solid rgba(139, 126, 200, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.see-also-section h3 {
    color: #8B7EC8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.see-also-links {
    color: #E8E3F3;
    line-height: 1.6;
}

.see-also-links a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.see-also-links a:hover {
    color: #FFA500;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .see-also-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .see-also-section h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   ELEGANT ADSENSE PLACEMENTS
   ============================================ */

/* Base AdSense Container - Elegant */
.adsense-container {
    position: relative;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(26, 11, 61, 0.2);
    border: 1px solid rgba(139, 126, 200, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.adsense-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.adsense-container:hover::before {
    opacity: 1;
}

.adsense-container:hover {
    border-color: rgba(139, 126, 200, 0.25);
    box-shadow: 0 4px 15px rgba(139, 126, 200, 0.1);
    transform: translateY(-1px);
}

/* Ad Label - More Subtle */
.ad-label {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.7rem;
    color: rgba(139, 126, 200, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 400;
    z-index: 2;
    opacity: 0.7;
}

.ad-content {
    position: relative;
    z-index: 2;
}

/* 1. Homepage Hero Banner */
.adsense-hero-banner {
    margin: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.6) 0%, rgba(45, 27, 78, 0.4) 100%);
}

.adsense-hero-banner .ad-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #8B7EC8;
    font-size: 0.9rem;
    font-weight: 500;
}

.adsense-hero-banner .ad-icon {
    font-size: 1.2rem;
}

/* 2. Sidebar Placement - Subtle Design */
.adsense-sidebar {
    position: static;
    margin-left: 2rem;
    width: 300px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background: rgba(26, 11, 61, 0.3);
    border: 1px solid rgba(139, 126, 200, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.adsense-sidebar .ad-placeholder {
    color: #8B7EC8;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.adsense-sidebar .ad-icon-large {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8B7EC8;
    opacity: 0.7;
}

/* 3. In-Content Placement - Natural Flow */
.adsense-in-content {
    margin: 2rem auto;
    max-width: 350px;
    text-align: center;
    background: rgba(26, 11, 61, 0.2);
    border: 1px solid rgba(139, 126, 200, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

/* 4. Between Sections */
.adsense-between-sections {
    margin: 4rem 0;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 126, 200, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(139, 126, 200, 0.2);
}

.adsense-between-sections .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #8B7EC8;
    font-weight: 600;
}

.adsense-between-sections .section-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #8B7EC8 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 5. Footer Premium */
.adsense-footer-premium {
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.8) 0%, rgba(45, 27, 78, 0.6) 50%, rgba(139, 126, 200, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.adsense-footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.adsense-footer-premium .premium-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.adsense-footer-premium .premium-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* Content Layout for Sidebar */
.content-with-sidebar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.main-content-area {
    flex: 1;
    min-width: 0;
}

.sidebar-area {
    flex-shrink: 0;
}

/* Responsive AdSense */
@media (max-width: 1200px) {
    .adsense-sidebar {
        display: none;
    }
    
    .content-with-sidebar {
        display: block;
    }
}

@media (max-width: 768px) {
    .adsense-hero-banner {
        margin: 2rem 0;
        padding: 1rem;
    }
    
    .adsense-between-sections {
        margin: 3rem 0;
        padding: 1.5rem;
    }
    
    .adsense-footer-premium {
        display: none;
    }
    
    .adsense-in-content {
        margin: 2rem auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .adsense-container {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .ad-label {
        font-size: 0.7rem;
    }
}
EOF < /dev/null