* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a1428 0%, #1e2328 50%, #463714 100%);
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.tab-container {
    background: linear-gradient(145deg, #1e2328 0%, #0f1419 100%);
    border: 2px solid #c89b3c;
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(200, 155, 60, 0.3),
        inset 0 1px 0 rgba(200, 155, 60, 0.1);
    overflow: hidden;
    width: 95vw;
    max-width: 1400px;
    min-height: 85vh;
    margin: 0 auto;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #0f1419 0%, #1e2328 100%);
    border-bottom: 2px solid #c89b3c;
    position: relative;
}

.tab-nav {
    display: flex;
    flex: 1;
}

.tab-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c89b3c, transparent);
}

.tab-button {
    flex: 1;
    padding: 18px 30px;
    background: linear-gradient(180deg, #3c3c41 0%, #1e2328 100%);
    border: none;
    border-right: 1px solid #463714;
    color: #cdbe91;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: inherit;
}

.tab-button:last-child {
    border-right: none;
}

.tab-button:hover {
    background: linear-gradient(180deg, #463714 0%, #3c3c41 100%);
    color: #f0e6d2;
    box-shadow: inset 0 0 10px rgba(200, 155, 60, 0.2);
}

.tab-button.active {
    background: linear-gradient(180deg, #c89b3c 0%, #463714 100%);
    color: #0f1419;
    position: relative;
    box-shadow: 
        inset 0 2px 4px rgba(15, 20, 25, 0.4),
        0 0 15px rgba(200, 155, 60, 0.5);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8aa6e, #c89b3c, #c8aa6e);
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.8);
}

.login-section {
    padding: 0 20px;
}

.login-btn {
    background: linear-gradient(145deg, #c89b3c 0%, #463714 100%);
    border: 1px solid #c8aa6e;
    border-radius: 6px;
    color: #0f1419;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.login-btn:hover {
    background: linear-gradient(145deg, #f0e6d2 0%, #c89b3c 100%);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
    transform: translateY(-1px);
}

.search-container {
    padding: 20px 30px;
    background: linear-gradient(180deg, #1e2328 0%, #0f1419 100%);
    border-bottom: 1px solid #463714;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(145deg, #0f1419 0%, #1e2328 100%);
    border: 2px solid #463714;
    border-radius: 6px;
    color: #cdbe91;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.search-container input:focus {
    border-color: #c89b3c;
    box-shadow: 
        0 0 10px rgba(200, 155, 60, 0.3),
        inset 0 1px 3px rgba(0, 0, 0, 0.2);
    color: #f0e6d2;
}

.search-container input::placeholder {
    color: #5a5a5a;
    font-style: italic;
}

.tab-content {
    padding: 30px;
    min-height: calc(85vh - 180px);
    background: linear-gradient(145deg, #0f1419 0%, #1e2328 100%);
    overflow-y: auto;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
}

.tab-pane.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    opacity: 1;
    padding: 20px 0;
}

/* Scrollbar styling for League theme */
.tab-content::-webkit-scrollbar {
    width: 12px;
}

.tab-content::-webkit-scrollbar-track {
    background: #0f1419;
    border-radius: 6px;
}

.tab-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c89b3c 0%, #463714 100%);
    border-radius: 6px;
    border: 2px solid #0f1419;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0e6d2 0%, #c89b3c 100%);
}

/* Champion Cards Styling */
.champion-card {
    background: linear-gradient(145deg, #1e2328 0%, #0f1419 100%);
    border: 1px solid #463714;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 140px;
    position: relative;
}

.champion-card:hover {
    border-color: #c89b3c;
    box-shadow: 
        0 4px 15px rgba(200, 155, 60, 0.2),
        inset 0 1px 0 rgba(200, 155, 60, 0.1);
    transform: translateY(-2px);
}

.champion-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #463714;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.champion-card:hover .champion-image {
    border-color: #c89b3c;
}

.champion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.champion-info {
    width: 100%;
    text-align: center;
}

.champion-info h3 {
    color: #f0e6d2;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: capitalize;
    text-align: center;
}

.champion-info p {
    color: #cdbe91;
    font-size: 11px;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
}

/* No Results Message */
.no-results-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #cdbe91;
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-results-message h3 {
    color: #f0e6d2;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.no-results-message p {
    font-size: 16px;
    opacity: 0.8;
}

/* Champion Info Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-container {
    background: linear-gradient(145deg, #1e2328 0%, #0f1419 100%);
    border: 2px solid #c89b3c;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(200, 155, 60, 0.3),
        inset 0 1px 0 rgba(200, 155, 60, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(180deg, #0f1419 0%, #1e2328 100%);
    border-bottom: 2px solid #c89b3c;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c89b3c, transparent);
}

.modal-champion-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-champion-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c89b3c;
    box-shadow: 0 0 15px rgba(200, 155, 60, 0.4);
}

.modal-champion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-champion-details h2 {
    color: #f0e6d2;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-champion-details p {
    color: #c8aa6e;
    font-size: 16px;
    font-style: italic;
    opacity: 0.9;
}

.modal-close {
    background: linear-gradient(145deg, #c89b3c 0%, #463714 100%);
    border: 1px solid #c8aa6e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #0f1419;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: linear-gradient(145deg, #f0e6d2 0%, #c89b3c 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
}

.modal-tabs {
    display: flex;
    background: linear-gradient(180deg, #1e2328 0%, #0f1419 100%);
    border-bottom: 1px solid #463714;
}

.modal-tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: linear-gradient(180deg, #3c3c41 0%, #1e2328 100%);
    border: none;
    border-right: 1px solid #463714;
    color: #cdbe91;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-tab-btn:last-child {
    border-right: none;
}

.modal-tab-btn:hover {
    background: linear-gradient(180deg, #463714 0%, #3c3c41 100%);
    color: #f0e6d2;
}

.modal-tab-btn.active {
    background: linear-gradient(180deg, #c89b3c 0%, #463714 100%);
    color: #0f1419;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(15, 20, 25, 0.4);
}

.modal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c89b3c;
}

.modal-content {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #0f1419 0%, #1e2328 100%);
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: #0f1419;
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c89b3c 0%, #463714 100%);
    border-radius: 5px;
    border: 1px solid #0f1419;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0e6d2 0%, #c89b3c 100%);
}

.modal-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-tab-content.active {
    display: block;
    opacity: 1;
}

.features-section h3,
.highlights-section h3 {
    color: #c89b3c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #463714;
    padding-bottom: 10px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    background: linear-gradient(145deg, #1e2328 0%, #0f1419 100%);
    border: 1px solid #463714;
    border-left: 4px solid #c89b3c;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #c89b3c;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.1);
}

.feature-title {
    color: #f0e6d2;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #c89b3c;
    font-size: 18px;
}

.feature-description {
    color: #cdbe91;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.feature-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.feature-tag {
    background: linear-gradient(145deg, #463714 0%, #3c3c41 100%);
    color: #c8aa6e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #5a5a5a;
}

.highlights-list {
    color: #cdbe91;
    font-size: 16px;
    line-height: 1.6;
}

.highlight-item {
    background: linear-gradient(145deg, #1e2328 0%, #0f1419 100%);
    border: 1px solid #463714;
    border-left: 4px solid #c8aa6e;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #c8aa6e;
    box-shadow: 0 4px 15px rgba(200, 170, 110, 0.1);
}

.highlight-title {
    color: #f0e6d2;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-icon {
    color: #c8aa6e;
    font-size: 18px;
}

.highlight-description {
    color: #cdbe91;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-champion-image {
        width: 60px;
        height: 60px;
    }
    
    .modal-champion-details h2 {
        font-size: 22px;
    }
    
    .modal-content {
        padding: 20px;
        max-height: 65vh;
    }
} 