/* Hero Sections */
.hero-section {
    padding: 2rem 0;
}

.hero-section--buy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 214, 160, 0.08) 100%);
}

[data-theme="dark"] .hero-section--buy {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.hero-section--sell {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 101, 101, 0.1) 100%);
}

[data-theme="dark"] .hero-section--sell {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.hero-section--obmennik {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
}

[data-theme="dark"] .hero-section--obmennik {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

/* Crypto Form Styles */
.crypto-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .crypto-form {
    background: rgba(30, 41, 59, 0.95);
}

/* Page Content Styles */
.page-content {
    line-height: 1.7;
}

.page-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Button Variants */
.btn--sell {
    background-color: #ef4444;
    color: white;
}

.btn--sell:hover {
    background-color: #dc2626;
}

[data-theme="dark"] .btn--sell {
    background-color: #dc2626;
}

[data-theme="dark"] .btn--sell:hover {
    background-color: #ef4444;
}

/* Exchange Cards for Obmennik Page */
.exchange-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.exchange-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.exchange-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .exchange-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.exchange-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exchange-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-light);
}

/* Stats Grid for Obmennik Page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Typography Utility Classes for Pages */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* Layout Utility Classes */
.lg\\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.flex-1 {
    flex: 1 1 0%;
}

.w-32 {
    width: 8rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.justify-center {
    justify-content: center;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.p-2 {
    padding: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.rounded-full {
    border-radius: 9999px;
}

.border {
    border-width: 1px;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.hover\\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

[data-theme="dark"] .hover\\:bg-gray-100:hover {
    background-color: var(--gray-700);
}

.transition-colors {
    transition: var(--transition-colors);
}

/* Color Utility Classes */
.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-green-500 {
    color: #10b981;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-purple-500 {
    color: #8b5cf6;
}

.text-yellow-500 {
    color: #f59e0b;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .crypto-form {
        padding: 1.5rem;
    }

    .exchange-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .text-3xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .lg\\:grid-cols-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .space-x-6 > * + *,
    .space-x-8 > * + * {
        margin-left: 0;
        margin-top: 1rem;
    }

    .space-x-6,
    .space-x-8 {
        flex-direction: column;
        align-items: flex-start;
    }
}


