/* League of Legends Wiki - Style */

.lol-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Champions Grid */
.lol-champions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px 0;
}

@media (max-width: 1200px) {
    .lol-champions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lol-champions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lol-champions-grid {
        grid-template-columns: 1fr;
    }
}

.lol-champion-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
}

.lol-champion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lol-champion-card:hover {
    transform: translateY(-3px);
    border-color: #c89b3c;
    box-shadow: 0 8px 25px rgba(200, 155, 60, 0.3);
}

.lol-champion-card:hover::before {
    opacity: 1;
}

.lol-champion-card img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    display: block;
}

.lol-champion-card-content {
    padding: 15px;
}

.lol-champion-card h3 {
    color: #f0e6d2;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.lol-champion-card:hover h3 {
    color: #c89b3c;
}

.lol-champion-title {
    color: #c89b3c;
    font-size: 13px;
    margin: 0 0 10px;
    font-style: italic;
}

.lol-champion-roles {
    font-size: 12px;
    color: #8a9ba8;
    margin: 8px 0;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.lol-champion-roles span {
    background: rgba(200, 155, 60, 0.2);
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid rgba(200, 155, 60, 0.3);
}

.lol-champion-card a {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #c89b3c 0%, #a67c2f 100%);
    color: #0a1428;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lol-champion-card a:hover {
    background: linear-gradient(135deg, #f0e6d2 0%, #c89b3c 100%);
    transform: scale(1.05);
}

.lol-block {
    background: #1a1a1a;
    border: 1px solid #c89b3c;
    border-radius: 5px;
    padding: 20px;
    color: #f0e6d2;
    margin-bottom: 15px;
}

.lol-block h3 {
    color: #c89b3c;
    margin-top: 0;
}

.lol-block + .lol-block {
    margin-top: 10px;
}

.lol-filters {
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
}

.lol-role-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.lol-role-btn {
    padding: 8px 16px;
    background: rgba(32, 32, 32, 0.5);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #8a9ba8;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.lol-role-btn:hover {
    background: rgba(200, 155, 60, 0.2);
    border-color: #c89b3c;
    color: #f0e6d2;
}

.lol-role-btn.active {
    background: linear-gradient(135deg, #c89b3c 0%, #a67c2f 100%);
    border-color: #c89b3c;
    color: #0a1428;
}

.lol-filter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.lol-filter-form input[type="text"] {
    width: 400px;
    padding: 10px 15px;
    background: rgba(32, 32, 32, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #f0e6d2;
    font-size: 14px;
}

.lol-filter-form input[type="text"]:focus {
    outline: none;
    border-color: #c89b3c;
}

.lol-filter-form input[type="text"]::placeholder {
    color: #5a6a7a;
}

.lol-filter-form button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #c89b3c 0%, #a67c2f 100%);
    border: none;
    border-radius: 5px;
    color: #0a1428;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lol-filter-form button:hover {
    background: linear-gradient(135deg, #f0e6d2 0%, #c89b3c 100%);
}

.lol-champion-roles {
    font-size: 12px;
    color: #c89b3c;
    margin: 5px 0;
}

.lol-no-results {
    text-align: center;
    color: #f0e6d2;
    padding: 40px;
    font-size: 18px;
}

.lol-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0;
}

.lol-pagination a,
.lol-pagination span {
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #c89b3c;
    border-radius: 5px;
    color: #f0e6d2;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.lol-pagination a:hover {
    background: #c89b3c;
    color: #0a1428;
}

.lol-pagination .current {
    background: #c89b3c;
    color: #0a1428;
    font-weight: bold;
}

/* Items Grid */
.lol-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.lol-item-card {
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.lol-item-card:hover {
    transform: translateY(-5px);
    border-color: #f0e6d2;
}

.lol-item-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.lol-item-card h3 {
    color: #f0e6d2;
    margin: 10px 0 5px;
    font-size: 16px;
}

.lol-item-desc {
    color: #c89b3c;
    font-size: 13px;
    min-height: 40px;
}

.lol-item-price {
    color: #f0e6d2;
    font-weight: bold;
    margin: 10px 0;
}

.lol-item-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #c89b3c;
    color: #0a1428;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.lol-item-card a:hover {
    background: #f0e6d2;
}

/* Item Detail */
.lol-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.lol-item-icon-large {
    width: 100px;
    height: 100px;
    border: 2px solid #c89b3c;
    border-radius: 5px;
}

.lol-item-header h1 {
    color: #f0e6d2;
    margin: 0;
}

.lol-item-subtitle {
    color: #c89b3c;
    margin: 5px 0;
}

.lol-item-tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.lol-item-prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.lol-item-prices div {
    background: #202020;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c89b3c;
}

.lol-item-description {
    color: #f0e6d2;
    line-height: 1.6;
}

.lol-item-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.lol-stat-item {
    background: #202020;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c89b3c;
    display: flex;
    justify-content: space-between;
}

.lol-stat-item span {
    color: #c89b3c;
}

.lol-stat-item strong {
    color: #f0e6d2;
}

.lol-item-recipe {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lol-recipe-item {
    background: #202020;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    min-width: 100px;
}

.lol-recipe-item img {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto 5px;
}

.lol-recipe-item span {
    color: #f0e6d2;
    font-size: 13px;
}

/* Runes */
.lol-runes-container {
    margin-top: 20px;
}

.lol-rune-path {
    margin-bottom: 40px;
}

.lol-rune-path h2 {
    color: #c89b3c;
    border-bottom: 2px solid #c89b3c;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.lol-runes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.lol-rune-card {
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.lol-rune-card.lol-keystone {
    border-color: #f0e6d2;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
}

.lol-rune-card:hover {
    transform: translateY(-5px);
}

.lol-rune-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
}

.lol-rune-card h3 {
    color: #f0e6d2;
    margin: 10px 0;
    font-size: 18px;
}

.lol-rune-card p {
    color: #c89b3c;
    font-size: 14px;
    line-height: 1.5;
}

.lol-rune-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #c89b3c;
    color: #0a1428;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.lol-rune-card a:hover {
    background: #f0e6d2;
}

.lol-rune-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.lol-rune-icon-large {
    width: 100px;
    height: 100px;
    border: 2px solid #c89b3c;
    border-radius: 5px;
}

.lol-rune-path {
    color: #c89b3c;
    margin: 5px 0;
}

.lol-keystone-badge {
    display: inline-block;
    background: #f0e6d2;
    color: #0a1428;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.lol-rune-short,
.lol-rune-description {
    color: #f0e6d2;
    line-height: 1.6;
}

/* Summoner Spells */
.lol-summoners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.lol-summoner-card {
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.lol-summoner-card:hover {
    transform: translateY(-5px);
    border-color: #f0e6d2;
}

.lol-summoner-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
}

.lol-summoner-card h3 {
    color: #f0e6d2;
    margin: 10px 0;
    font-size: 18px;
}

.lol-summoner-cd {
    color: #c89b3c;
    font-weight: bold;
    margin: 10px 0;
}

.lol-summoner-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #c89b3c;
    color: #0a1428;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.lol-summoner-card a:hover {
    background: #f0e6d2;
}

.lol-summoner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.lol-summoner-icon-large {
    width: 100px;
    height: 100px;
    border: 2px solid #c89b3c;
    border-radius: 5px;
}

.lol-summoner-cooldown {
    color: #c89b3c;
    margin: 5px 0;
    font-size: 18px;
}

.lol-summoner-description {
    color: #f0e6d2;
    line-height: 1.6;
}

.lol-summoner-modes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lol-mode-badge {
    background: #202020;
    color: #c89b3c;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #c89b3c;
    font-weight: bold;
}

/* Champion Detail */
.lol-champion-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.lol-champion-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #1a1a1a);
    padding: 40px 30px 30px;
}

.lol-champion-header-content {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.lol-champion-icon {
    width: 120px;
    height: 120px;
    border: 3px solid #c89b3c;
    border-radius: 5px;
}

.lol-champion-header h1 {
    color: #f0e6d2;
    font-size: 48px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.lol-champion-subtitle {
    color: #c89b3c;
    font-size: 20px;
    margin: 5px 0;
}

.lol-champion-tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.lol-tag {
    background: #c89b3c;
    color: #0a1428;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.lol-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.lol-stat {
    background: #202020;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #c89b3c;
}

.lol-stat span {
    display: block;
    color: #c89b3c;
    font-size: 12px;
    margin-bottom: 5px;
}

.lol-stat strong {
    display: block;
    color: #f0e6d2;
    font-size: 24px;
}

.lol-stat small {
    display: block;
    color: #888;
    font-size: 11px;
    margin-top: 3px;
}

.lol-ability {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #202020;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #c89b3c;
}

.lol-ability-icon {
    position: relative;
    flex-shrink: 0;
}

.lol-ability-icon img {
    width: 64px;
    height: 64px;
    border-radius: 5px;
    border: 2px solid #c89b3c;
}

.lol-ability-key {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #c89b3c;
    color: #0a1428;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.lol-ability-content h4 {
    color: #c89b3c;
    margin: 0 0 10px;
    font-size: 18px;
}

.lol-ability-content p {
    color: #f0e6d2;
    line-height: 1.6;
    margin: 0 0 10px;
}

.lol-ability-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #c89b3c;
}

.lol-tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.lol-tips-ally {
    border-left: 4px solid #46b450;
}

.lol-tips-enemy {
    border-left: 4px solid #dc3232;
}

.lol-tips-container ul {
    margin: 15px 0 0;
    padding-left: 20px;
}

.lol-tips-container li {
    color: #f0e6d2;
    margin-bottom: 10px;
    line-height: 1.5;
}

.lol-skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.lol-skin-card {
    background: #202020;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #c89b3c;
    transition: transform 0.3s;
}

.lol-skin-card:hover {
    transform: translateY(-5px);
}

.lol-skin-card img {
    width: 100%;
    display: block;
}

.lol-skin-card p {
    padding: 15px;
    margin: 0;
    color: #f0e6d2;
    text-align: center;
    font-weight: bold;
}
   
 


/* Champion Detail V2 - Modern Design */
.lol-champion-detail-v2 {
    max-width: 1400px;
    margin: 0 auto;
}

.lol-hero-header {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center 20%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.lol-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.lol-hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.lol-hero-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lol-hero-icon {
    width: 100px;
    height: 100px;
    border: 3px solid #c89b3c;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.lol-hero-info h1 {
    color: #f0e6d2;
    font-size: 42px;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.lol-hero-subtitle {
    color: #c89b3c;
    font-size: 18px;
    margin: 5px 0 10px;
    font-style: italic;
}

.lol-hero-tags {
    display: flex;
    gap: 8px;
}

.lol-hero-tags span {
    background: rgba(200, 155, 60, 0.3);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 5px;
    color: #f0e6d2;
    font-size: 13px;
    border: 1px solid rgba(200, 155, 60, 0.5);
}

.lol-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 10px;
}

.lol-stat-bar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lol-stat-bar span {
    color: #c89b3c;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.lol-bar {
    height: 8px;
    background: rgba(32, 32, 32, 0.8);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, 0.3);
}

.lol-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #c89b3c 0%, #f0e6d2 100%);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.lol-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 10px;
}

.lol-card {
    background: rgba(32, 32, 32, 0.3);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
}

.lol-main-content .lol-card:last-child,
.lol-sidebar .lol-card:last-child {
    margin-bottom: 0;
}

.lol-card h2 {
    color: #c89b3c;
    font-size: 24px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(200, 155, 60, 0.3);
}

.lol-lore {
    color: #f0e6d2;
    line-height: 1.8;
    font-size: 15px;
}

.lol-skill {
    background: rgba(32, 32, 32, 0.5);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.lol-skill:hover {
    border-color: #c89b3c;
    background: rgba(32, 32, 32, 0.8);
}

.lol-skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lol-skill-header img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #c89b3c;
}

.lol-skill-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lol-skill-key {
    background: #c89b3c;
    color: #0a1428;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.lol-skill-title h3 {
    color: #f0e6d2;
    margin: 0;
    font-size: 18px;
}

.lol-skill-meta {
    display: flex;
    gap: 15px;
}

.lol-skill-meta span {
    color: #8a9ba8;
    font-size: 13px;
    background: rgba(26, 26, 26, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.lol-cd { color: #5bc0de !important; }
.lol-cost { color: #5cb85c !important; }

.lol-skill-desc {
    color: #c8d4e0;
    line-height: 1.6;
    margin-top: 12px;
    font-size: 14px;
}

.lol-skins-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.lol-skin-item {
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lol-skin-item:hover {
    border-color: #c89b3c;
    transform: translateY(-3px);
}

.lol-skin-item img {
    width: 100%;
    display: block;
}

.lol-skin-item p {
    background: rgba(26, 26, 26, 0.9);
    color: #f0e6d2;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.lol-stats-card {
    position: sticky;
    top: 20px;
}

.lol-stats-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lol-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(32, 32, 32, 0.5);
    border-radius: 5px;
    border: 1px solid #2a2a2a;
}

.lol-stat-item span {
    color: #8a9ba8;
    font-size: 13px;
    font-weight: 600;
}

.lol-stat-bar-container {
    height: 6px;
    background: rgba(32, 32, 32, 0.8);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.lol-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #c89b3c 0%, #f0e6d2 100%);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.lol-stat-item strong {
    color: #c89b3c;
    font-size: 16px;
    text-align: right;
}

.lol-tips-card ul {
    margin: 0;
    padding-left: 20px;
}

.lol-tips-card li {
    color: #c8d4e0;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
}

.lol-tips-card.lol-ally {
    border-left: 4px solid #46b450;
}

.lol-tips-card.lol-enemy {
    border-left: 4px solid #dc3232;
}

@media (max-width: 1200px) {
    .lol-content-grid {
        grid-template-columns: 1fr;
    }
    
    .lol-hero-stats {
        grid-template-columns: repeat(2, 150px);
    }
    
    .lol-stats-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .lol-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lol-hero-stats {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lol-hero-info h1 {
        font-size: 32px;
    }
}


/* Runes V2 - Modern Compact Design */
.lol-runes-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.lol-rune-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.lol-rune-tab {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    color: #8a9ba8;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.lol-rune-tab:hover {
    border-color: #c89b3c;
    color: #f0e6d2;
    transform: translateY(-2px);
}

.lol-rune-tab.active {
    background: linear-gradient(135deg, #c89b3c 0%, #a67c2f 100%);
    border-color: #c89b3c;
    color: #0a1428;
}

.lol-rune-section {
    margin-bottom: 40px;
}

.lol-rune-section-title {
    color: #c89b3c;
    font-size: 28px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(200, 155, 60, 0.3);
}

.lol-runes-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.lol-rune-card-v2 {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lol-rune-card-v2:hover {
    border-color: #c89b3c;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.3);
}

.lol-rune-card-v2.lol-keystone-v2 {
    border-color: #c89b3c;
    background: linear-gradient(135deg, #202020 0%, #2a2a2a 100%);
}

.lol-keystone-badge-v2 {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.lol-rune-card-v2 img {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 5px;
}

.lol-rune-card-v2 h3 {
    color: #f0e6d2;
    font-size: 16px;
    margin: 0 0 10px;
}

.lol-rune-card-v2 p {
    color: #8a9ba8;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .lol-runes-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .lol-rune-card-v2 {
        padding: 15px;
    }
}


/* Items V2 - Modern Compact Design */
.lol-items-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.lol-items-filter-bar {
    margin-bottom: 20px;
}

.lol-items-filter-form {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 15px;
}

.lol-items-filter-form input {
    flex: 1;
    max-width: 300px;
    padding: 10px 15px;
    background: rgba(32, 32, 32, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #f0e6d2;
    font-size: 14px;
}

.lol-items-filter-form input:focus {
    outline: none;
    border-color: #c89b3c;
}

.lol-items-filter-form select {
    flex: 3;
    padding: 10px 15px;
    background: rgba(32, 32, 32, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #f0e6d2;
    font-size: 14px;
    cursor: pointer;
}

.lol-items-filter-form select:focus {
    outline: none;
    border-color: #c89b3c;
}

.lol-items-filter-form button {
    padding: 10px 25px;
    background: linear-gradient(135deg, #c89b3c 0%, #a67c2f 100%);
    border: none;
    border-radius: 5px;
    color: #0a1428;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lol-items-filter-form button:hover {
    background: linear-gradient(135deg, #f0e6d2 0%, #c89b3c 100%);
}

.lol-items-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.lol-item-card-v2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    position: relative;
}

.lol-item-card-v2:hover {
    border-color: #c89b3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.3);
    z-index: 10;
}

.lol-item-card-v2:hover .lol-item-tooltip {
    opacity: 1;
    visibility: visible;
}

.lol-item-tooltip {
    position: absolute;
    top: 0;
    left: calc(100% + 4px);
    width: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lol-item-tooltip-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 155, 60, 0.3);
}

.lol-item-tooltip-header img {
    width: 48px;
    height: 48px;
}

.lol-item-tooltip-header h4 {
    color: #f0e6d2;
    margin: 0 0 5px;
    font-size: 16px;
}

.lol-tooltip-price {
    color: #c89b3c;
    font-size: 13px;
    font-weight: 600;
}

.lol-tooltip-desc {
    color: #8a9ba8;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.lol-tooltip-full {
    color: #c8d4e0;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.lol-tooltip-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
    border-top: 1px solid rgba(200, 155, 60, 0.3);
}

.lol-tooltip-stats span {
    color: #c89b3c;
    font-size: 12px;
    font-weight: 600;
}

.lol-item-card-v2 img {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    display: block;
}

.lol-item-price-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(200, 155, 60, 0.9);
    color: #0a1428;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.lol-item-card-v2 h3 {
    color: #f0e6d2 !important;
    font-size: 15px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .lol-items-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lol-item-search input {
        min-width: 100%;
    }
    
    .lol-items-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}


/* Summoners V2 - Modern Design */
.lol-summoners-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.lol-summoners-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.lol-summoner-card-v2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.lol-summoner-card-v2:hover {
    border-color: #c89b3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.3);
    z-index: 10;
}

.lol-summoner-card-v2:hover .lol-summoner-tooltip {
    opacity: 1;
    visibility: visible;
}

.lol-summoner-card-v2 img {
    width: 64px;
    height: 64px;
    border-radius: 5px;
    border: 2px solid #c89b3c;
}

.lol-summoner-info {
    flex: 1;
}

.lol-summoner-info h3 {
    color: #f0e6d2 !important;
    font-size: 16px !important;
    margin: 0 0 5px !important;
    font-weight: 600 !important;
}

.lol-summoner-cd-v2 {
    color: #c89b3c;
    font-size: 13px;
    font-weight: 600;
}

.lol-summoner-tooltip {
    position: absolute;
    top: 0;
    left: calc(100% + 4px);
    width: 320px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lol-summoner-tooltip-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 155, 60, 0.3);
}

.lol-summoner-tooltip-header img {
    width: 48px;
    height: 48px;
}

.lol-summoner-tooltip-header h4 {
    color: #f0e6d2;
    margin: 0 0 5px;
    font-size: 16px;
}

.lol-tooltip-cd {
    color: #c89b3c;
    font-size: 13px;
    font-weight: 600;
}

.lol-tooltip-desc {
    color: #c8d4e0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.lol-tooltip-modes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(200, 155, 60, 0.3);
}

.lol-tooltip-modes span {
    background: rgba(200, 155, 60, 0.2);
    color: #c89b3c;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(200, 155, 60, 0.3);
}

@media (max-width: 768px) {
    .lol-summoners-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* Player Stats */
.lol-player-search, .lol-leaderboard {
    max-width: 1000px;
    margin: 0 auto;
}
.lol-search-form, .lol-leaderboard-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.lol-input, .lol-select {
    padding: 10px;
    border: 2px solid #c89b3c;
    background: #1a1a1a;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}
.lol-input:focus, .lol-select:focus {
    outline: none;
    border-color: #c89b3c;
}
.lol-tag { width: 80px; }
.lol-separator {
    color: #c89b3c;
    font-size: 20px;
    font-weight: bold;
}
.lol-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #c89b3c 0%, #f0e6d2 100%);
    border: none;
    border-radius: 5px;
    color: #0a1428;
    font-weight: bold;
    cursor: pointer;
}
.lol-btn:hover {
    background: linear-gradient(135deg, #f0e6d2 0%, #c89b3c 100%);
}
.lol-loading, .lol-error {
    text-align: center;
    padding: 20px;
    color: #fff;
}
.lol-error { color: #ff4655; }
.lol-player-profile {
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 10px;
    padding: 20px;
}
.lol-player-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.lol-player-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #c89b3c;
}
.lol-player-info h2 {
    color: #f0e6d2;
    margin: 0;
}
.lol-player-info p {
    color: #a09b8c;
    margin: 5px 0 0;
}
.lol-rank-card {
    background: #202020;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}
.lol-rank-tier {
    color: #c89b3c;
    font-size: 24px;
    font-weight: bold;
}
.lol-rank-lp {
    color: #c89b3c;
    font-size: 18px;
    margin: 10px 0;
}
.lol-rank-wr { color: #a09b8c; }
.lol-player-profile h3 {
    color: #f0e6d2;
    margin: 20px 0 10px;
}
.lol-matches {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lol-match {
    background: #202020;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid;
}
.lol-match.win { border-left-color: #c89b3c; }
.lol-match.loss { border-left-color: #ff4655; }
.lol-match-result { font-weight: bold; min-width: 80px; }
.lol-match.win .lol-match-result { color: #c89b3c; }
.lol-match.loss .lol-match-result { color: #ff4655; }
.lol-match-champion { color: #f0e6d2; font-weight: bold; }
.lol-match-kda { color: #a09b8c; }
.lol-match-duration { color: #5b5a56; font-size: 12px; }
.lol-lb-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lol-lb-item {
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.lol-lb-item:hover {
    border-color: #c89b3c;
    transform: translateY(-2px);
}
.lol-lb-rank {
    min-width: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #c89b3c;
}
.lol-lb-name {
    flex: 1;
    color: #f0e6d2;
    font-weight: bold;
}
.lol-lb-lp {
    color: #c89b3c;
    font-weight: bold;
}
.lol-lb-wr {
    color: #a09b8c;
    font-size: 14px;
}
.lol-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lol-popup-content {
    background: #1a1a1a;
    border: 2px solid #c89b3c;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}
.lol-popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.lol-popup-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.lol-popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #c89b3c;
}
.lol-popup-header h2 {
    color: #f0e6d2;
    margin: 0;
}
.lol-popup-header p {
    color: #a09b8c;
    margin: 5px 0 0;
}
.lol-popup-match {
    background: #202020;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-left: 4px solid;
}
.lol-popup-match.win { border-left-color: #c89b3c; }
.lol-popup-match.loss { border-left-color: #ff4655; }
.lol-popup-match div { color: #f0e6d2; }
#lol-popup-body h3 {
    color: #c89b3c;
    margin: 20px 0 10px;
}

/* Builds */
.lol-build-container {
    max-width: 1200px;
    margin: 0 auto;
}
.lol-build-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
}
.lol-build-header h2 {
    color: #f0e6d2;
    margin: 0;
}
.lol-build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.lol-build-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
}
.lol-build-card h3 {
    color: #c89b3c;
    margin: 0 0 15px;
    font-size: 18px;
}
.lol-build-stat {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(32, 32, 32, 0.5);
    border-radius: 5px;
    margin-bottom: 10px;
}
.lol-build-stat span {
    color: #8a9ba8;
}
.lol-build-stat strong {
    color: #c89b3c;
    font-size: 18px;
}
.lol-build-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.lol-build-icons img {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    border: 2px solid #c89b3c;
}
.lol-build-runes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.lol-rune-slot {
    background: rgba(32, 32, 32, 0.5);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #f0e6d2;
    border: 1px solid #2a2a2a;
}
.lol-rune-slot.keystone {
    grid-column: 1 / -1;
    background: rgba(200, 155, 60, 0.2);
    border-color: #c89b3c;
    font-weight: bold;
}
.lol-build-skills {
    grid-column: 1 / -1;
}
.lol-skill-order {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.lol-skill-level {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 32, 32, 0.8);
    border: 1px solid #c89b3c;
    border-radius: 5px;
    color: #f0e6d2;
    font-weight: bold;
    font-size: 14px;
}

/* Free Rotation */
.lol-rotation-container {
    max-width: 1200px;
    margin: 0 auto;
}
.lol-rotation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    padding: 20px;
}
.lol-rotation-header h2 {
    color: #f0e6d2;
    margin: 0;
}
.lol-rotation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}
.lol-rotation-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #202020 100%);
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
.lol-rotation-card:hover {
    border-color: #c89b3c;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.3);
}
.lol-rotation-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.lol-rotation-name {
    padding: 10px;
    text-align: center;
    color: #f0e6d2;
    font-weight: bold;
    font-size: 14px;
    background: rgba(26, 26, 26, 0.8);
}
.lol-rotation-count {
    text-align: center;
    color: #c89b3c;
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0;
}
