/* Specifické styly pro pece-o-bitcoin.php */

/* Page header s ikonou */
.page-header {
    margin-bottom: 2rem;
}

.page-title-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.page-title-container h1 {
    margin-bottom: 0;
    flex: 1;
    z-index: 1;
}

.page-icon {
    position: absolute;
    right: -20px;
    top: -10px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(225, 29, 72, 0.15));
    z-index: 2;
}

.page-icon:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(225, 29, 72, 0.25));
}

.page-icon svg {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

.page-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Osnova stránky */
.page-outline {
    background: rgba(225, 29, 72, 0.05);
    border-left: 4px solid #e11d48;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.page-outline h3 {
    color: #e11d48;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.outline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.outline-list li {
    margin-bottom: 0.5rem;
}

.outline-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.outline-list a:hover {
    color: #e11d48;
    text-decoration: underline;
}

/* Content subsections */
.content-subsection {
    scroll-margin-top: 120px;
}

.content-subsection:first-child {
    margin-top: 0;
}

/* Speciální boxy */
.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box h4 {
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.recommendation-box {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.recommendation-box h4 {
    color: #16a34a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-box {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

.tip-box a {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
}

.tip-box a:hover {
    text-decoration: underline;
}

.urgency-box {
    background: rgba(245, 101, 101, 0.1);
    border-left: 4px solid #f56565;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.solution-box {
    background: rgba(72, 187, 120, 0.1);
    border-left: 4px solid #48bb78;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.security-note {
    background: rgba(156, 163, 175, 0.1);
    border-left: 4px solid #9ca3af;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}

/* Wallet recommendations */
.wallet-recommendations {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.wallet-categories {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.wallet-category h5 {
    color: #e11d48;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wallet-category p {
    margin-bottom: 1rem;
    color: #666;
}

.wallet-types {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.wallet-types li {
    background: rgba(225, 29, 72, 0.05);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid #e11d48;
}

/* Alby recommendation */
.alby-recommendation {
    background: rgba(225, 29, 72, 0.1);
    border: 2px solid #e11d48;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alby-recommendation h4 {
    color: #e11d48;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Balance flow */
.balance-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.balance-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(225, 29, 72, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.balance-card h4 {
    color: #e11d48;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.balance-arrows {
    font-size: 2rem;
    color: #e11d48;
    font-weight: bold;
}

.balance-footer {
    text-align: center;
}

/* Vexl recommendation */
.vexl-recommendation {
    background: rgba(225, 29, 72, 0.1);
    border: 2px solid #e11d48;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.vexl-recommendation h3 {
    color: #e11d48;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Price comparison */
.price-comparison {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.price-comparison h4 {
    color: #e11d48;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fee-list li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .page-icon {
        position: static;
        transform: scale(0.8);
        right: auto;
        top: auto;
    }
    
    .balance-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .balance-arrows {
        transform: rotate(90deg);
    }
    
    .wallet-categories {
        grid-template-columns: 1fr;
    }
    
    .page-outline {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .page-intro {
        font-size: 1rem;
    }
    
    .warning-box,
    .recommendation-box,
    .alby-recommendation,
    .vexl-recommendation {
        padding: 1rem;
    }
}
