/* Common Styles */
:root {
    --primary: #06b6d4;
    --secondary: #7c3aed;
    --darker: #111827;
    --card-bg: rgba(17, 24, 39, 0.7);
}

/* Guide Cards */
.guide-card {
    background: var(--card-bg);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.guide-card:hover .guide-icon {
    background: var(--primary);
    color: var(--darker);
    transform: rotateY(360deg);
}

.guide-link {
    display: flex;
    align-items: center;
    color: #e5e7eb;
    transition: all 0.3s ease;
}

.guide-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Platform Cards */
.platform-card {
    background: var(--card-bg);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.platform-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.platform-content {
    padding: 1.5rem;
}

.platform-link {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-link:hover {
    color: #0891b2;
}

/* Difficulty Badges */
.difficulty-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.difficulty-badge.beginner {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.difficulty-badge.intermediate {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.difficulty-badge.advanced {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Tool Categories */
.tool-category {
    background: var(--card-bg);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tool-category:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.tool-item {
    padding: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.tool-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tool-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.tool-tags {
    display: flex;
    gap: 0.5rem;
}

.tool-tag {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

/* Technique Cards */
.technique-card {
    background: var(--card-bg);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .guide-card, .platform-card, .tool-category, .technique-card {
        padding: 1.5rem;
    }

    .platform-img {
        height: 150px;
    }

    .tool-tags {
        flex-wrap: wrap;
    }
}