/* CricHeroes Tournament Link Section */

.cricheroes-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cricheroes-section .container {
    max-width: 60%;
    width: 60%;
    margin: 0 auto;
}

.cricheroes-link-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Decorative corner accent */
.cricheroes-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.cricheroes-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

.cricheroes-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.cricheroes-link-card:hover .cricheroes-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
}

.cricheroes-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.5);
}

.cricheroes-icon:active {
    transform: scale(1.05);
}

.cricheroes-icon i {
    font-size: 2rem;
    color: white;
}

.cricheroes-content {
    flex: 1;
}

.cricheroes-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cricheroes-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cricheroes-section .container {
        max-width: 85%;
        width: 85%;
    }

    .cricheroes-link-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .cricheroes-content {
        text-align: center;
    }

    .cricheroes-icon {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .cricheroes-section .container {
        max-width: 95%;
        width: 95%;
    }

    .cricheroes-link-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .cricheroes-icon {
        width: 60px;
        height: 60px;
    }

    .cricheroes-icon i {
        font-size: 1.5rem;
    }

    .cricheroes-content h3 {
        font-size: 1.3rem;
    }

    .cricheroes-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cricheroes-section {
        padding: 1.5rem 0;
    }

    .cricheroes-section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }

    .cricheroes-link-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .cricheroes-icon {
        width: 50px;
        height: 50px;
    }

    .cricheroes-icon i {
        font-size: 1.25rem;
    }

    .cricheroes-content h3 {
        font-size: 1.1rem;
    }

    .cricheroes-content p {
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .cricheroes-link-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .cricheroes-link-card:hover {
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
}
