/* Riot Games Style Ranking Table */
.riot-ranking-container {
    background: #f9f9f9;
    padding: 40px 0;
}

.riot-ranking-header {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: #17212d;
    text-align: center;
    border-bottom: 2px solid rgba(192, 142, 57, 0.3);
}

.riot-ranking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(192,142,57,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.riot-ranking-title {
    font-size: 48px;
    font-family: "Beaufort for LOL", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    position: relative;
    z-index: 2;
    color: #f9f9f9;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.riot-ranking-subtitle {
    color: #c08e39;
    font-size: 18px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.riot-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.riot-search-section {
    background: #f0f0f0;
    border: 1px solid rgba(192, 142, 57, 0.2);
    border-radius: 8px;
    padding: 32px;
    margin: -40px auto 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.riot-search-title {
    color: #17212d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.riot-search-desc {
    color: #333333;
    font-size: 14px;
    margin-bottom: 24px;
}

.riot-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.riot-search-select {
    background: #f9f9f9;
    border: 1px solid rgba(192, 142, 57, 0.4);
    border-radius: 6px;
    padding: 12px 16px;
    color: #1a1a1a;
    font-size: 14px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.riot-search-select:focus {
    outline: none;
    border-color: #c08e39;
    box-shadow: 0 0 0 2px rgba(192, 142, 57, 0.2);
}

.riot-search-input {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(192, 142, 57, 0.4);
    border-radius: 6px;
    padding: 12px 16px;
    color: #17212d;
    font-size: 14px;
    transition: all 0.3s ease;
}

.riot-search-input:focus {
    outline: none;
    border-color: #c08e39;
    background: #f8f8f8;
    box-shadow: 0 0 0 2px rgba(192, 142, 57, 0.3);
}

.riot-search-input::placeholder {
    color: rgba(17, 17, 17, 0.5);
}

.riot-search-btn {
    background: #c08e39;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    color: #f9f9f9;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.riot-search-btn:hover {
    background: #22a1b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 161, 184, 0.3);
}

.riot-table-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.riot-table-header {
    background: #17212d;
    padding: 24px 0;
}

.riot-table-header-row {
    display: grid;
    grid-template-columns: 100px 120px 1fr 220px 150px;
    gap: 16px;
    padding: 0 24px;
    align-items: center;
}

.riot-table-header-cell {
    color: #f9f9f9;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.riot-table-header-cell:nth-child(1) {
    text-align: center;
    /* Rank */
}

.riot-table-header-cell:nth-child(2) {
    text-align: center;
    /* Race */
}

.riot-table-header-cell:nth-child(3) {
    text-align: center;
    /* Character */
}

.riot-table-header-cell:nth-child(4) {
    text-align: center;
    /* Guild Name */
}

.riot-table-header-cell:nth-child(5) {
    text-align: center;
    /* Points */
}

.riot-table-body {
    background: #ffffff;
}

.riot-table-row {
    display: grid;
    grid-template-columns: 100px 120px 1fr 220px 150px;
    gap: 16px;
    padding: 20px 24px;
    align-items: center;
    border-bottom: 1px solid rgba(192, 142, 57, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.riot-table-row:hover {
    background: #f8f8f8;
    transform: translateX(4px);
}

.riot-table-row:last-child {
    border-bottom: none;
}

.riot-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17212d;
    font-size: 18px;
}

.riot-rank.top-1 {
    color: #FFD700;
}

.riot-rank.top-2 {
    color: #C0C0C0;
}

.riot-rank.top-3 {
    color: #CD7F32;
}

.riot-race {
    display: flex;
    align-items: center;
    justify-content: center;
}

.riot-race img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.riot-player {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.riot-player-avatar {
    border-radius: 50%;
    background: #c08e39;
    border: 2px solid rgba(192, 142, 57, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.riot-table-row:hover .riot-player-avatar {
    border-color: #c08e39;
    box-shadow: 0 0 12px rgba(34, 161, 184, 0.4);
}

.riot-player-info {
    flex: 1;
}

.riot-player-name {
    color: #17212d;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.riot-player-name:hover {
    color: #c08e39;
}

.riot-player-level {
    color: rgba(17, 17, 17, 0.7);
    font-size: 12px;
    margin-top: 2px;
}

.riot-player-class {
    color: #c08e39;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.riot-guild {
    color: #17212d;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
    display: block;
}

.riot-guild:hover {
    color: #c08e39;
}

.riot-guild.no-guild {
    color: rgba(17, 17, 17, 0.5);
    font-style: italic;
}

.riot-points {
    color: #17212d;
    font-size: 16px;
    text-align: center;
}

.riot-last-update {
    text-align: center;
    color: #17212d;
    font-size: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(192, 142, 57, 0.15);
    border: 1px solid rgba(192, 142, 57, 0.3);
    border-radius: 6px;
}

.riot-no-results {
    text-align: center;
    padding: 60px 24px;
    color: rgba(17, 17, 17, 0.6);
    font-size: 16px;
}

/* Trophy Icons */
.trophy-gold {
    color: #FFD700;
    font-size: 20px;
}

.trophy-silver {
    color: #C0C0C0;
    font-size: 20px;
}

.trophy-bronze {
    color: #CD7F32;
    font-size: 20px;
}

/* Guild Specific Styles */
.riot-guild-info {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding-left: 24px;
}

.riot-guild-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c08e39;
    border: 2px solid rgba(192, 142, 57, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #f9f9f9;
    font-weight: 700;
    font-size: 16px;
}

.riot-table-row:hover .riot-guild-avatar {
    border-color: #c08e39;
    box-shadow: 0 0 12px rgba(34, 161, 184, 0.4);
}

.riot-guild-details {
    flex: 1;
}

.riot-guild-name {
    color: #17212d;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.riot-guild-name:hover {
    color: #c08e39;
}

.riot-guild-level {
    color: rgba(17, 17, 17, 0.7);
    font-size: 12px;
    margin-top: 2px;
}

.riot-table-header-cell:nth-child(2).guild-name {
    text-align: left;
    padding-left: 30px;
}

.riot-table-header-cell:nth-child(3).guild-master {
    text-align: left;
    padding-left: 70px;
}

.riot-player.guild-name {
    padding-left: 60px;
}

.riot-player.guild-master {
    padding-left: 60px;
}

/* Grid template for guild pages */
.guild-page .riot-table-header-row,
.guild-page .riot-table-row {
    grid-template-columns: 100px 220px 1fr 120px 150px;
}

/* Global log specific table layout */
.global-log-page .riot-table-header-row,
.global-log-page .riot-table-row {
    grid-template-columns: 180px 1fr 160px;
    gap: 20px;
}

.global-log-page .riot-table-header-cell:nth-child(1) {
    text-align: left;
    padding-left: 10px;
}

.global-log-page .riot-table-header-cell:nth-child(2) {
    text-align: left;
}

.global-log-page .riot-table-header-cell:nth-child(3) {
    text-align: center;
}

/* Enhanced global message cell */
.riot-global-cell {
    padding: 15px 0px;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: middle;
    word-wrap: break-word;
    max-width: none;
}

/* Enhanced date formatting for global logs */
.riot-date {
    padding: 15px 20px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    min-width: 140px;
    vertical-align: middle;
    margin: 5px;
}

.riot-date-time {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    font-size: 14px;
}

.riot-date-day {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: capitalize;
    font-weight: 500;
}

/* Special styling for recent messages */
.riot-table-row.recent-message .riot-date-time {
    color: #c08e39;
    font-weight: 700;
}

/* Responsive Design Updates */
@media (max-width: 768px) {

    /* Global log responsive adjustments */
    .global-log-page .riot-table-header-row,
    .global-log-page .riot-table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }

    .global-log-page .riot-player {
        padding: 15px;
        border-bottom: 1px solid rgba(192, 142, 57, 0.1);
        margin-bottom: 10px;
        background: rgba(248, 249, 250, 0.5);
        border-radius: 6px;
    }

    .global-log-page .riot-player-avatar {
        width: 40px;
        height: 40px;
    }

    .riot-global-cell {
        padding: 10px 15px;
        margin: 10px 15px;
        border-radius: 6px;
        border-left: none;
        border: 1px solid rgba(192, 142, 57, 0.2);
        background: rgba(255, 255, 255, 0.8);
    }

    .riot-date {
        text-align: center;
        padding: 10px 15px;
        margin: 10px 15px 20px;
        background: rgba(192, 142, 57, 0.05);
        border: 1px solid rgba(192, 142, 57, 0.2);
    }

    .riot-date-time {
        font-size: 13px;
    }

    .riot-date-day {
        font-size: 10px;
    }

    /* Hide table headers on mobile */
    .global-log-page .riot-table-header {
        display: none;
    }
}

/* Original global cell and date styles - keeping for backward compatibility */
.riot-global-cell {
    display: table-cell;
    padding: 12px 15px;
    vertical-align: middle;
    width: 55%;
    color: #333;
    word-break: break-word;
}

.riot-date {
    display: table-cell;
    padding: 12px 15px;
    vertical-align: middle;
    width: 20%;
    color: #888;
    text-align: right;
}

/* Additional responsive for original styles */
@media (max-width: 768px) {

    .riot-global-cell,
    .riot-date {
        display: block;
        width: 100%;
        text-align: left;
    }

    .riot-date {
        text-align: left;
        padding-top: 0;
    }

    /* Container padding */
    .riot-content-wrapper {
        padding: 0 12px;
    }

    /* Header responsive */
    .riot-ranking-header {
        padding: 40px 0;
    }

    .riot-ranking-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .riot-ranking-subtitle {
        font-size: 16px;
    }

    /* Search section responsive */
    .riot-search-section {
        padding: 20px 16px;
        margin: -30px 12px 30px;
    }

    .riot-search-title {
        font-size: 20px;
    }

    .riot-search-form {
        flex-direction: column;
        gap: 12px;
    }

    .riot-search-select,
    .riot-search-input {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        /* iOS zoom fix */
    }

    .riot-search-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Table responsive - Player pages */
    .riot-table-header-row,
    .riot-table-row {
        grid-template-columns: 60px 1fr 80px;
        gap: 8px;
        padding: 12px 8px;
    }

    /* Hide guild column in mobile */
    .riot-table-header-cell:nth-child(4),
    .riot-guild {
        display: none !important;
    }

    /* Hide race column in mobile */
    .riot-table-header-cell:nth-child(2),
    .riot-race {
        display: none !important;
    }

    /* Adjust player info for mobile */
    .riot-player {
        gap: 8px;
        padding-left: 0 !important;
    }

    .riot-player-avatar {
        width: 32px;
        height: 32px;
    }

    .riot-player-name {
        font-size: 14px;
    }

    .riot-player-level,
    .riot-player-class {
        font-size: 11px;
    }

    /* Points responsive */
    .riot-points {
        font-size: 14px;
    }

    /* Guild page specific responsive */
    .guild-page .riot-table-header-row,
    .guild-page .riot-table-row {
        grid-template-columns: 50px 1fr 70px;
        gap: 6px;
        padding: 12px 8px;
    }

    /* Hide guild master and member columns on mobile */
    .guild-page .riot-table-header-cell:nth-child(3),
    .guild-page .riot-table-header-cell:nth-child(4),
    .guild-page .riot-player.guild-master,
    .guild-page .riot-points:nth-child(4) {
        display: none !important;
    }

    /* Guild info responsive */
    .guild-page .riot-guild-info {
        padding-left: 0 !important;
        gap: 8px;
    }

    .guild-page .riot-guild-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .guild-page .riot-guild-name {
        font-size: 14px;
    }

    .guild-page .riot-guild-level {
        font-size: 11px;
    }

    /* Rank responsive */
    .riot-rank {
        font-size: 16px;
    }

    /* Update info responsive */
    .riot-last-update {
        font-size: 11px;
        padding: 12px;
        margin-bottom: 16px;
    }

    /* No results responsive */
    .riot-no-results {
        padding: 40px 16px;
        font-size: 14px;
    }
}

/* League of Legends Player Profile Styling - White Theme */
/* Override any existing styles */
.riot-ranking-container,
.riot-ranking-container * {
    box-sizing: border-box;
}

.riot-profile-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f9f9;
    min-height: 100vh;
}

.riot-profile-header {
    background: #f0f0f0;
    border: 1px solid rgba(192, 142, 57, 0.2);
    border-radius: 8px;
    padding: 32px;
    margin: -40px auto 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.riot-profile-main-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.riot-profile-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    position: relative;
}

.riot-profile-race {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 14px;
    padding: 2px 6px;
}

.riot-profile-image {
    width: 140px;
    height: 140px;
    border-radius: 8px;
}

.riot-guild-image {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    background: url(../../img/portal/adventure/icn_adventure_guild_profile_mark.png) center no-repeat;
    background-size: cover
}

.riot-profile-details {
    flex: 1;
}

.riot-profile-name-section {
    margin-bottom: 20px;
}

.riot-profile-level {
    font-size: 14px;
    color: #c08e39;
    font-weight: 600;
    margin-bottom: 5px;
}

.riot-profile-name {
    font-size: 32px;
    color: #17212d;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.riot-profile-badge {
    margin-top: 10px;
}

.riot-badge {
    background: #c08e39;
    color: #17212d;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.riot-profile-basic-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.riot-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.riot-info-label {
    font-size: 12px;
    color: #c08e39;
    font-weight: 600;
    text-transform: uppercase;
}

.riot-info-value {
    font-size: 16px;
    color: #17212d;
    font-weight: 500;
}

.riot-profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.riot-profile-stats-section,
.riot-profile-inventory-section {
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.1);
}

.player-profile-page .riot-profile-level {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    padding: 4px 12px;
    background: #c08e39;
    border-radius: 20px;
    margin-bottom: 10px;
}

.player-profile-page .riot-player-level {
    color: #888888;
}


.riot-section-title {
    font-size: 20px;
    color: #17212d;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.riot-stats-grid {
    display: grid;
    gap: 15px;
}

.riot-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.riot-stat-item:last-child {
    border-bottom: none;
}

.riot-stat-label {
    font-size: 14px;
    color: #c08e39;
    font-weight: 600;
}

.riot-stat-value {
    font-size: 14px;
    color: #17212d;
    font-weight: 500;
}

.riot-inventory-tabs {
    display: flex;
    justify-content: center;
    /* This centers the buttons horizontally */
    gap: 10px;
    /* Maintains spacing between buttons */
    margin-bottom: 20px;
    /* Keeps the bottom margin */
}

.riot-tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.riot-tab-btn:hover {
    background: #c08e39;
    color: #17212d;
}

.riot-tab-btn.riot-tab-active {
    background: #c08e39;
    color: #17212d;
}

.riot-inventory-display {
    flex-direction: column;
    /* Change from row to column */
    align-items: center;
    /* Center-align items */
    gap: 20px;
    /* Add spacing between stacked elements */
}

.riot-character-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.riot-character-image {
    width: 130px;
    height: 403px;
}

.riot-inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    flex: 1;
}

.riot-item-slot {
    position: relative;
    width: 60px;
    height: 60px;
}

.riot-item-detail {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.riot-item-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid #c08e39;
    border-radius: 4px;
    background: #f9f9f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.riot-item-image {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.riot-item-rare-seal {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* 2. Style for bottom tabs */
.riot-player-logs {
    margin-top: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.1);

}

.riot-logs-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.riot-logs-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #c08e39;
    border-bottom: 3px solid transparent;
}

.riot-logs-tab.active {
    color: #c08e39;
    border-bottom-color: #c08e39;
}

.riot-logs-content {
    display: none;
}

.riot-logs-content.active {
    display: block;
}

.riot-character-preview {
    order: 1;
}

.riot-inventory-grid {
    order: 2;
}

.riot-item-info {
    display: none;
}

/* Tooltip Styles */
.tooltip {
    position: fixed;
    background-color: rgba(28, 30, 52, .8);
    color: #f9f9f9;
    padding: 10px;
    width: 220px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    border: 1px solid #808bba;
    border-radius: 5px;
}

.tooltip.show {
    opacity: 1;
}

.riot-item-detail:hover .tooltip {
    opacity: 1;
}

.riot-profile-actions {
    text-align: center;
    margin-bottom: 30px;
}

/* Modal Styles */
.riot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.riot-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.riot-modal-content {
    background: #f9f9f9;
    border: 2px solid #c08e39;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    overflow: hidden;
}

.riot-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #17212d;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.riot-modal-close:hover {
    color: #c08e39;
}

.riot-modal-header {
    background: #c08e39;
    padding: 20px;
    text-align: center;
}

.riot-modal-title {
    color: #17212d;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.riot-modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.riot-kill-log-list,
.riot-global-log-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.riot-kill-entry,
.riot-global-entry {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.riot-kill-entry:hover,
.riot-global-entry:hover {
    border-color: #c08e39;
}

.riot-kill-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.riot-kill-info,
.riot-global-info {
    flex: 1;
}

.riot-kill-name,
.riot-global-message {
    color: #17212d;
    font-weight: 600;
    margin-bottom: 5px;
}

.riot-kill-details {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.riot-kill-count,
.riot-kill-time,
.riot-global-time {
    color: #c08e39;
}

/* Responsive Design */
@media (max-width: 768px) {
    .riot-profile-content {
        grid-template-columns: 1fr;
    }

    .riot-profile-main-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .riot-profile-basic-info {
        justify-content: center;
    }

    .riot-inventory-display {
        flex-direction: column;
        align-items: center;
    }

    .riot-inventory-grid {
        grid-template-columns: repeat(6, 100px);
        justify-content: center;
    }
}

section.discord .row {
    background-image: url(../assets/equipment/discord-bg.png);
    background-size: 92%;
    background-position: top center;
    background-repeat: no-repeat;
}

.server-info ul li:first-child span,
.server-info ul li:first-child span:last-child {
    color: #39ff9f;
}

.server-info ul li span:first-child {
    text-transform: uppercase;
}

.server-info ul li span:last-child {
    color: #fff4d0;
}

.sox-drop ul li,
.sox-plus ul li {
    color: #fff4d0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.item-img {
    border: 0 none;
    height: 100%;
    max-width: 100%;
    vertical-align: middle;
}

section.char-page .table {
    font-size: 1rem;
    font-weight: 400;
    border-collapse: separate;
    border-spacing: 10px 10px;
    text-align: left;
}

section.char-page .table thead tr th {
    color: #fff;
    background: none;
    border: none;
    box-shadow: none;
}

section.char-page .table tbody tr td {
    color: #fff;
    font-weight: bold;
    background: #2a1506;
    border: none;
    box-shadow: none;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

section.char-page .table tbody tr th:first-child {
    text-align: center !important;
}

section.char-page .table tbody tr td a {
    color: #fff;
    text-decoration: none;
}

section.char-page .table>:not(caption)>*>* {
    border: 2px solid #7b643a;
    font-weight: bold;
    /* border-radius: 13px; */
    background-color: #323232;
    background-image: none;
    box-shadow: none !important;
}

section.char-page .table-striped>tbody>tr:nth-of-type(odd)>* {
    color: #fff;
}

section.char-page .table>:not(caption)>*>* {
    color: #fff;
}

section.char-page .table>:not(caption)>*>* {
    padding: 0.6rem .6rem;
}

section.char-page .card {
    /* background-color: #fff; 
/* background-image: url(../assets/equipment/charview-bg-ptr.png); */
    /* background-position: center right; */
    /* background-size: cover; */
    /* border: 3px solid #ba904e; */
    /* border-radius: 10px; */
}

section.char-page .card:before {
    content: none;
}

section.char-page .char-info ul {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

section.char-page .char-info ul li {
    color: #fff4d0;
    text-transform: none;
}

section.char-page .char-info ul li span:first-child {
    text-transform: none;
}

section.char-page .char-info ul li span {
    color: #ffd360;
    text-transform: uppercase;
}

section.char-page .char-info img {
    width: 128px;
    position: relative;
    top: 20px;
}

section.char-page .char-info img:last-child {
    width: 50px;
    position: relative;
    top: -5px;
}

section.char-page .char-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    background-image: url(../assets/equipment/char-img-efx.png);
    background-position: center;
    background-size: 150%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
}

section.char-page .char-info ul li h3 {
    color: #ffd360;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Creolia, serif;
    text-transform: none;
    margin-bottom: 0;
    background: linear-gradient(to top, #cc9c51, #f6e27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.char-page #display-inventory-set,
section.char-page #display-inventory-avatar {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: #323232;
    background-image: url(../assets/equipment/inv-bg.png);
    background-position: center center;
    background-size: cover;
    border: 3px solid #868686;
    border-radius: 10px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

section.char-page #display-inventory-set>h2,
section.char-page #display-inventory-avatar>h2 {
    display: none;
}

section.char-page .table.table-inventory>:not(caption)>*>* {
    padding: 10px;
}

section.char-page .table.table-inventory tbody tr td {
    color: #fff;
    font-weight: bold;
    background: none;
    border: none;
    box-shadow: none;
    text-align: left;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

section.char-page .table.table-inventory tbody tr:first-child td .sro-item-detail {
    margin-bottom: 20px !important;
}

section.char-page .table.table-inventory {
    font-size: 1rem;
    font-weight: 400;
    border-collapse: unset;
    border-spacing: 0;
    text-align: left;
    margin-bottom: 0;
}

.sro-item-detail {
    background: none;
    width: 38px;
}

.sro-item-detail.sro-item-special {
    background: none;
}

.sro-item-detail .item {
    background-color: transparent;
    background-image: url(../assets/equipment/item-bg.png);
    background-position: center center;
    background-size: 100%;
    margin: 0;
}

section.char-page .card.lastkilled {
    background-color: #0c0500;
    background-image: url(../assets/equipment/charview-lastkilled-bg.png);
    background-position: center center;
    background-size: cover;
    border: 3px solid #ba904e;
    border-radius: 10px;
}

#inventory-char-image {
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#inventory-char-image>img {
    width: 180px;
    height: auto;
}

.sro-item-detail .tooltip {
    font-size: 12px;
    width: 220px;
    /* min-height: 200px; */
    background-color: rgba(28, 30, 52, .8);
    color: #fff;
    padding: 6px;
    border: 1px solid #808bba;
    border-radius: 5px;
    box-shadow: none
}

.info-table-player {
    margin-top: 0px;
    color: #888;
}

.inventory-grid-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.inventory-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
}

.inventory-left {
    order: 1;
}

.character-preview-center {
    order: 2;
    margin: 10px 30px;
}

.inventory-right {
    order: 3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .inventory-grid-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .inventory-side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .character-preview-center {
        margin: 20px 0;
        order: 2;
    }

    .inventory-left {
        order: 1;
    }

    .inventory-right {
        order: 3;
    }
}

/* PvP History Specific Styles */
.player-log-page .riot-table-header-row {
    grid-template-columns: 1fr 1fr 160px;
    gap: 20px;
}

.player-log-page .riot-table-row {
    grid-template-columns: 1fr 1fr 160px;
    gap: 20px;
}

.player-log-page .riot-table-header-cell:nth-child(1) {
    text-align: left;
    padding-left: 10px;
}

.player-log-page .riot-table-header-cell:nth-child(2) {
    text-align: left;
}

.player-log-page .riot-table-header-cell:nth-child(3) {
    text-align: center;
}

/* Player sections for killer and dead */
.riot-player-killer,
.riot-player-dead {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
}

.riot-player-killer .riot-player-info,
.riot-player-dead .riot-player-info {
    flex: 1;
}

.riot-player-killer .riot-player-name,
.riot-player-dead .riot-player-name {
    color: #17212d;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.riot-player-killer .riot-player-name:hover,
.riot-player-dead .riot-player-name:hover {
    color: #c08e39;
}

.riot-player-killer .riot-player-level,
.riot-player-dead .riot-player-level {
    color: rgba(17, 17, 17, 0.7);
    font-size: 12px;
    font-weight: 500;
}

/* Mobile responsive for PvP logs */
@media (max-width: 768px) {

    .global-log-page .riot-table-header-row,
    .global-log-page .riot-table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .global-log-page .riot-table-header {
        display: none;
    }

    .riot-player-killer,
    .riot-player-dead {
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .riot-player-killer .riot-player-avatar,
    .riot-player-dead .riot-player-avatar {
        width: 35px;
        height: 35px;
    }

    .riot-player-killer .riot-player-name,
    .riot-player-dead .riot-player-name {
        font-size: 14px;
    }

    .riot-player-killer .riot-player-level,
    .riot-player-dead .riot-player-level {
        font-size: 11px;
    }
}

/* Tablo baÅŸlÄ±k ve satÄ±r hizalamalarÄ±nÄ± dÃ¼zeltme */
.guild-profile-page .riot-table-header-row,
.guild-profile-page .riot-table-row {
    display: grid;
    grid-template-columns: 100px 120px 1fr 220px 150px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(192, 142, 57, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

/* TÃ¼m hÃ¼creler iÃ§in ortak stil */
.guild-profile-page .riot-table-header-cell,
.guild-profile-page .riot-table-row>div {
    display: flex;
    align-items: center;
}

/* BaÅŸlÄ±k hÃ¼creleri */
.guild-profile-page .riot-table-header-cell {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #fff;
    justify-content: center;
    text-align: center;
}

/* Ä°Ã§erik hÃ¼creleri */
.guild-profile-page .riot-table-row>div {
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid rgba(192, 142, 57, 0.1);
}

/* Ã–zel sÃ¼tun hizalamalarÄ± */
.guild-profile-page .riot-rank {
    justify-content: center;
    font-weight: 600;
    color: #c08e39;
}

.guild-profile-page .riot-race {
    justify-content: center;
}

/* Character sÃ¼tunu hizalamasÄ±nÄ± dÃ¼zeltme */
.guild-profile-page .riot-player {
    justify-content: flex-start;
    padding-left: 0;
    text-align: left;
}

/* Player bilgi konteyneri */
.guild-profile-page .riot-player-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Player ismi */
.guild-profile-page .riot-player-name {
    text-align: left;
    width: 100%;
    margin-right: auto;
}

/* Player level ve class */
.guild-profile-page .riot-player-level,
.guild-profile-page .riot-player-class {
    text-align: left;
    width: 100%;
    margin-right: auto;
}

.guild-profile-page .riot-table-row>div:nth-child(3) {
    padding-left: 0;
    justify-content: flex-start;
}

.guild-profile-page .riot-table-row>div:nth-child(4) {
    padding-left: 0;
    justify-content: flex-start;
}

.guild-profile-page .riot-table-row>div:nth-child(5) {
    justify-content: center;
    text-align: center;
}

.guild-profile-page .riot-table-header-cell:nth-child(3) {
    justify-content: flex-start;
    padding-left: 10px;
}

.guild-profile-page .riot-table-header-cell:nth-child(4) {
    justify-content: flex-start;
    padding-left: 0px;
}

.guild-profile-page .riot-table-header-cell:nth-child(5) {
    justify-content: center;
    text-align: center;
}

/* Activity Points sÃ¼tunu iÃ§in Ã¶zel ayar */
.guild-profile-page .riot-table-row>div:nth-child(6) {
    justify-content: center;
    text-align: center;
}

.guild-profile-page .riot-table-header-cell:nth-child(6),
.guild-profile-page .riot-table-row>div:nth-child(6) {
    padding-right: 15px;
}

/* Responsive ayarlar */
@media (max-width: 1200px) {

    .guild-profile-page .riot-table-header-row,
    .guild-profile-page .riot-table-row {
        grid-template-columns: 70px 90px minmax(150px, 1fr) 130px 100px 100px;
    }
}

@media (max-width: 992px) {

    .guild-profile-page .riot-table-header-row,
    .guild-profile-page .riot-table-row {
        grid-template-columns: 60px 80px 1fr 120px 90px 90px;
    }

    .guild-profile-page .riot-table-header-cell,
    .guild-profile-page .riot-table-row>div {
        font-size: 13px;
        padding: 8px 3px;
    }
}

@media (max-width: 768px) {

    .guild-profile-page .riot-table-header-row,
    .guild-profile-page .riot-table-row {
        grid-template-columns: 50px 1fr 100px;
    }

    .guild-profile-page .riot-table-header-cell:nth-child(4),
    .guild-profile-page .riot-table-header-cell:nth-child(5),
    .guild-profile-page .riot-table-header-cell:nth-child(6),
    .guild-profile-page .riot-table-row>div:nth-child(4),
    .guild-profile-page .riot-table-row>div:nth-child(5),
    .guild-profile-page .riot-table-row>div:nth-child(6) {
        display: none;
    }
}

.guild-profile-page .riot-table-header-row,
.guild-profile-page .riot-table-row {
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(80px, 1fr) minmax(100px, 1fr) minmax(200px, 2fr) minmax(150px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr);
}


/* Guild Avatar */
.guild-profile-page .riot-profile-avatar {
    flex-shrink: 0;
    border-radius: 100px;
    border: 3px solid #c08e39;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.guild-profile-page .riot-guild-image {
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.guild-profile-page .riot-profile-level {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    padding: 4px 12px;
    background: #c08e39;
    border-radius: 20px;
    margin-bottom: 10px;
}

.guild-profile-page .riot-player-level {
    color: #888888;
}

.guild-profile-page .guild_master {
    background: #c08e39;
    color: white;
}

 /* League of Legends Download Page Styles */
 .riot-download-container {
    background: #f9f9f9;
    color: #17212d;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.riot-download-hero {
    position: relative;
    padding: 120px 0 80px;
    background: #17212d;
    text-align: center;
    border-bottom: 2px solid rgba(192, 142, 57, 0.3);
}

.riot-download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(192, 142, 57, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.riot-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.riot-download-title {
    font-family: "Beaufort for LOL", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #f9f9f9;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.riot-download-subtitle {
    font-size: 1.5rem;
    color: #c08e39;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.riot-download-description {
    font-size: 1.1rem;
    color: #e8e8e8;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.riot-main-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #c08e39;
    color: #f9f9f9;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(192, 142, 57, 0.5);
}

.riot-main-download:hover {
    background: #22a1b8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 161, 184, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.riot-download-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.riot-quick-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.riot-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(249, 249, 249, 0.1);
    border: 1px solid rgba(192, 142, 57, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: #f9f9f9;
    transition: all 0.3s ease;
    min-width: 140px;
}

.riot-quick-link:hover {
    background: rgba(192, 142, 57, 0.2);
    border-color: #c08e39;
    transform: translateY(-5px);
    color: #c08e39;
}

.riot-quick-link-icon {
    font-size: 2rem;
    color: #c08e39;
}

.riot-quick-link-text {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* Download Content Section */
.riot-download-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.riot-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.riot-section-title {
    font-family: "Beaufort for LOL", sans-serif;
    font-size: 2.5rem;
    color: #17212d;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.riot-section-title i {
    color: #c08e39;
    font-size: 2rem;
}

.riot-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.riot-download-card {
    background: #ffffff;
    border: 1px solid rgba(192, 142, 57, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.riot-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c08e39;
}

.riot-download-card:hover {
    transform: translateY(-5px);
    border-color: #c08e39;
    box-shadow: 0 15px 40px rgba(192, 142, 57, 0.2);
}

.riot-card-header {
    margin-bottom: 25px;
}

.riot-card-title {
    font-family: "Beaufort for LOL", sans-serif;
    font-size: 1.4rem;
    color: #17212d;
    margin-bottom: 12px;
    font-weight: 600;
}

.riot-card-description {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.riot-card-footer {
    border-top: 1px solid rgba(192, 142, 57, 0.2);
    padding-top: 20px;
    text-align: center;
}

.riot-download-hint {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.riot-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c08e39;
    color: #f9f9f9;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.riot-download-btn:hover {
    background: #22a1b8;
    transform: translateY(-2px);
}

/* System Requirements Section */
.riot-system-requirements {
    padding: 80px 0;
    background: #ffffff;
}

.riot-requirements-table {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(192, 142, 57, 0.3);
    margin-bottom: 40px;
}

.riot-requirements-notes,
.riot-driver-notes {
    margin-top: 40px;
}

.riot-notes-title {
    font-family: "Beaufort for LOL", sans-serif;
    font-size: 1.5rem;
    color: #17212d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.riot-notes-title i {
    color: #c08e39;
}

.riot-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.riot-notes-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.riot-notes-list li::before {
    content: 'â–¶';
    position: absolute;
    left: 0;
    top: 12px;
    color: #c08e39;
    font-size: 0.8rem;
}

/* Graphics Drivers Section */
.riot-graphics-drivers {
    padding: 80px 0;
    background: #f8f8f8;
}

.riot-drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.riot-driver-card {
    background: #ffffff;
    border: 1px solid rgba(192, 142, 57, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.riot-driver-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c08e39;
}

.riot-driver-card:hover {
    transform: translateY(-8px);
    border-color: #c08e39;
    box-shadow: 0 20px 50px rgba(192, 142, 57, 0.3);
}

.riot-driver-logo {
    margin-bottom: 25px;
}

.riot-driver-logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.riot-driver-title {
    font-family: "Beaufort for LOL", sans-serif;
    font-size: 1.3rem;
    color: #17212d;
    margin-bottom: 25px;
    font-weight: 600;
}

.riot-driver-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #22a1b8;
    color: #f9f9f9;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.riot-driver-btn:hover {
    background: #c08e39;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 142, 57, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .riot-download-hero {
        padding: 80px 0 60px;
    }

    .riot-hero-content {
        padding: 0 20px;
    }

    .riot-download-title {
        font-size: 2.5rem;
    }

    .riot-download-subtitle {
        font-size: 1.2rem;
    }

    .riot-quick-links {
        gap: 15px;
    }

    .riot-quick-link {
        min-width: 120px;
        padding: 15px;
    }

    .riot-content-container {
        padding: 0 20px;
    }

    .riot-section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .riot-downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .riot-table-header,
    .riot-table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .riot-header-cell.category,
    .riot-cell.category {
        background: rgba(192, 142, 57, 0.2);
        border-right: none;
        border-bottom: 1px solid rgba(192, 142, 57, 0.3);
    }

    .riot-cell.colspan {
        grid-column: span 1;
    }

    .riot-drivers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .riot-download-title {
        font-size: 2rem;
    }

    .riot-main-download {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .riot-download-content,
    .riot-system-requirements,
    .riot-graphics-drivers {
        padding: 60px 0;
    }

    .riot-content-container {
        padding: 0 15px;
    }

    .riot-download-card,
    .riot-driver-card {
        padding: 20px;
    }
}