/* 
* Combined CSS file for the entire website 
* Generated on: Wed 10/01/2025 21:42:34.52 
* This file contains all styles from individual CSS files 
*/ 
 
/* ============================ 
   Styles from: event-detail.css 
   ============================ */ 
/* Event Detail Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Event Hero Section */
.event-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/event-featured.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
}

.event-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.event-badges .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.event-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
}

.event-meta-item i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.event-meta-item span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.event-meta-item p {
    font-weight: 600;
    margin-bottom: 0;
}

/* Event Card */
.event-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

/* Event Status */
.event-status {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.event-countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.event-progress .progress {
    height: 10px;
    border-radius: 5px;
}

/* Event Tabs */
.nav-tabs {
    border-bottom: none;
    padding: 0 1rem;
    background-color: #f8f9fa;
}

.nav-tabs .nav-link {
    border: none;
    color: #495057;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 3px solid var(--primary-color);
}

/* Tab Content */
.tab-content {
    padding: 1.5rem;
}

.tab-content h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.tab-content h3 {
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.tab-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.tab-content ul, 
.tab-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.5rem;
}

/* Event Gallery */
.event-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.event-gallery img:hover {
    transform: scale(1.05);
}

/* Event Quote */
.event-quote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.event-quote blockquote {
    margin: 0;
}

.event-quote p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.event-quote footer {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: normal;
}

/* Event Timeline */
.timeline-section {
    margin-bottom: 2rem;
}

.timeline-section h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
    border-left: 2px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-date {
    margin-bottom: 0.5rem;
}

.timeline-date span {
    font-weight: 600;
    color: #6c757d;
}

.timeline-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Prize Cards */
.prize-cards {
    margin-bottom: 2rem;
}

.prize-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.prize-card-header {
    padding: 1.5rem;
    text-align: center;
    color: #fff;
}

.first-prize .prize-card-header {
    background-color: #ffc107;
}

.second-prize .prize-card-header {
    background-color: #6c757d;
}

.third-prize .prize-card-header {
    background-color: #cd7f32;
}

.prize-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.prize-card-header h3 {
    margin: 0;
    font-weight: 700;
}

.prize-card-body {
    padding: 1.5rem;
    text-align: center;
}

.prize-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.prize-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.prize-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.prize-details li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.special-prize {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
}

/* Rules Section */
.rules-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.rules-section:last-child {
    border-bottom: none;
}

.rules-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.rules-section h4 {
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

/* Participants */
.participants-search {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.player-info {
    display: flex;
    align-items: center;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.player-name {
    display: block;
    font-weight: 600;
}

.player-team {
    display: block;
    color: #6c757d;
}

/* Event Registration */
.event-registration {
    padding: 1.5rem;
}

.event-registration h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Event Info List */
.event-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-info-list li {
    display: flex;
    margin-bottom: 1.25rem;
}

.event-info-list li:last-child {
    margin-bottom: 0;
}

.event-info-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.event-info-list li span {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.event-info-list li p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Organizer Info */
.organizer-info {
    text-align: center;
}

.organizer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.organizer-info h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.organizer-info p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.organizer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.organizer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #6c757d;
    transition: all 0.3s ease;
}

.organizer-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Sponsors List */
.sponsors-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sponsor-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.sponsor-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Event Map */
.event-map {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-button i {
    margin-right: 0.5rem;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.telegram {
    background-color: #0088cc;
}

.share-button.email {
    background-color: #6c757d;
}

/* Section Title */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Related Events */
.event-card-horizontal {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.event-card-horizontal:hover {
    transform: translateY(-5px);
}

.event-card-img {
    position: relative;
}

.event-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card-img .event-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    min-width: 60px;
}

.event-card-img .event-date .event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.event-card-img .event-date .event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
}

.event-details p {
    margin-bottom: 0.25rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .event-title {
        font-size: 2rem;
    }
    
    .event-meta {
        gap: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 768px) {
    .event-hero {
        padding: 60px 0;
    }
    
    .event-title {
        font-size: 1.75rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .event-meta-item {
        width: 100%;
        justify-content: center;
    }
    
    .event-countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .nav-tabs .nav-link {
        white-space: nowrap;
    }
    
    .prize-cards .col-md-4 {
        margin-bottom: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .event-hero {
        padding: 40px 0;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .tab-content {
        padding: 1rem;
    }
    
    .event-gallery img {
        height: 150px;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
} 
 
/* ============================ 
   Styles from: events.css 
   ============================ */ 
/* Events Page Specific Styles */

/* Events Banner */
.events-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/events-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
}

/* Section Titles */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Event Filters */
.event-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.event-filters .btn {
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Featured Event Card */
.featured-event-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-event-card:hover {
    transform: translateY(-5px);
}

.featured-event-card .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-event-card img {
    height: 100%;
    object-fit: cover;
}

.featured-event-card .event-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.featured-event-card .event-date .event-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.featured-event-card .event-date .event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-details {
    color: #6c757d;
    font-size: 0.9rem;
}

.event-details p {
    margin-bottom: 0.25rem;
}

/* Event Cards */
.event-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.event-card-img {
    position: relative;
    overflow: hidden;
}

.event-card-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.event-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.event-card .event-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    min-width: 60px;
}

.event-card .event-date .event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.event-card .event-date .event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
}

.event-card .event-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

.event-card .progress {
    height: 8px;
    border-radius: 4px;
}

/* Event Calendar */
.event-calendar {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table-calendar {
    margin-bottom: 0;
}

.table-calendar th {
    text-align: center;
    font-weight: 600;
    color: #6c757d;
}

.table-calendar td {
    text-align: center;
    height: 60px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-calendar td.has-event {
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
}

.table-calendar td.has-event:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.table-calendar td:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .events-banner {
        padding: 60px 0;
    }
    
    .featured-event-card .card-title {
        font-size: 1.5rem;
    }
    
    .table-calendar td {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .events-banner {
        padding: 40px 0;
    }
    
    .event-card-img img {
        height: 180px;
    }
    
    .featured-event-card .card-title {
        font-size: 1.25rem;
    }
    
    .table-calendar td {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .featured-event-card .event-date {
        padding: 0.3rem 0.8rem;
    }
    
    .featured-event-card .event-date .event-day {
        font-size: 1.5rem;
    }
} 
 
/* ============================ 
   Styles from: forgot-password.css 
   ============================ */ 
/* Forgot Password Page Specific Styles */

body {
    background-color: #f5f5f5;
}

.forgot-password-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.forgot-password-card .card-header {
    border-bottom: none;
}

.forgot-password-card .card-body {
    padding: 2rem;
}

/* Step Styles */
.forgot-password-step {
    display: none;
}

.forgot-password-step.active {
    display: block;
}

/* Icon Styles */
.forgot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    font-size: 2.5rem;
}

.forgot-icon.success {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--success-color);
}

/* Captcha Styles */
.captcha-container {
    border: 1px solid #ced4da;
}

.captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #212529;
    text-decoration: line-through;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQYV2NkYGD4z8DAwMgABXAGNgGQSEMTAwODEUwDulAxVsVwJgAWWQEBOKKs2QAAAABJRU5ErkJggg==');
}

/* Email Info Box */
.email-info {
    border-left: 4px solid var(--primary-color);
}

.email-info h5 {
    font-weight: 600;
    font-size: 1rem;
}

.email-info ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.email-info li {
    margin-bottom: 0.5rem;
}

.email-info li:last-child {
    margin-bottom: 0;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
}

.password-strength .progress {
    height: 4px;
    margin-bottom: 0.25rem;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group .btn-outline-secondary {
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Animation for steps */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.forgot-password-step.active {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .forgot-password-card .card-body {
        padding: 1.5rem;
    }
    
    .forgot-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
} 
 
/* ============================ 
   Styles from: game-detail.css 
   ============================ */ 
/* Game Detail Page Specific Styles */

/* Game Banner */
.game-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/game1-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
}

.game-trailer {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-trailer img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Section Titles */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Game Screenshots */
.game-screenshots img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.game-screenshots img:hover {
    transform: scale(1.05);
}

/* Game Features */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.feature-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* System Requirements */
.system-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.system-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.system-card ul li {
    margin-bottom: 0.5rem;
}

/* Reviews */
.review-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.review-score .rating {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.review-bar {
    margin-bottom: 0.75rem;
}

.review-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Sidebar */
.game-info-card, .game-tags, .similar-games, .download-links {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.game-info-card h4, .game-tags h4, .similar-games h4, .download-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.game-info-card ul li {
    margin-bottom: 0.75rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 50px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.similar-game-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.similar-game-item:last-child {
    border-bottom: none;
}

.similar-game-item a {
    text-decoration: none;
    color: inherit;
}

.similar-game-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.download-links .btn {
    margin-bottom: 0.5rem;
}

/* Game Updates */
.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 120px;
    height: 100%;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 150px;
    margin-bottom: 2rem;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: right;
}

.timeline-date span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
}

.timeline-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.timeline-content h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content ul {
    padding-left: 1.5rem;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

/* Rating Select in Modal */
.rating-select {
    font-size: 2rem;
    color: #ffc107;
    cursor: pointer;
}

.rating-star {
    margin: 0 0.25rem;
    transition: all 0.2s ease;
}

.rating-star:hover, .rating-star.active {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .game-banner {
        padding: 70px 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline:before {
        left: 90px;
    }
    
    .timeline-item {
        padding-left: 120px;
    }
    
    .timeline-date {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .game-banner {
        padding: 50px 0;
    }
    
    .timeline:before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .timeline-date {
        position: relative;
        width: auto;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .timeline-content:before {
        display: none;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .review-score {
        font-size: 2.5rem;
    }
    
    .review-score .rating {
        font-size: 1.25rem;
    }
    
    .similar-game-img {
        width: 50px;
        height: 50px;
    }
} 
 
/* ============================ 
   Styles from: games.css 
   ============================ */ 
/* Games Page Specific Styles */

/* Games Banner */
.games-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/games-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    border-radius: 50px 0 0 50px;
    padding-left: 20px;
    height: 50px;
    border: none;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    width: 60px;
    height: 50px;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filters .btn {
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Game Cards */
.game-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.game-card-img {
    position: relative;
    overflow: hidden;
}

.game-card-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card .card-title {
    font-weight: 600;
}

.game-card .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.rating {
    color: #ffc107;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-radius: 4px;
    margin: 0 3px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .games-banner {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .games-banner {
        padding: 40px 0;
    }
    
    .game-card-img img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-box .form-control,
    .search-box .btn {
        height: 45px;
    }
} 
 
/* ============================ 
   Styles from: home.css 
   ============================ */ 
/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Game Cards */
.game-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.game-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.game-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-card .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

/* News Cards */
.news-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-card .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

/* Download App Section */
.app-download-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Community Section */
.community-stats .display-4 {
    font-size: 3rem;
    color: var(--primary-color);
}

.community-stats h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .game-card .card-img-top,
    .news-card .card-img-top {
        height: 160px;
    }
} 
 
/* ============================ 
   Styles from: login.css 
   ============================ */ 
/* Login Page Specific Styles */

body {
    background-color: #f5f5f5;
}

.login-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.login-card .card-header {
    border-bottom: none;
}

.login-card .card-body {
    padding: 2rem;
}

.social-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group .btn-outline-secondary {
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Animation for alerts */
@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.alert {
    animation: slideDown 0.4s ease-out;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-card .card-body {
        padding: 1.5rem;
    }
} 
 
/* ============================ 
   Styles from: news-detail.css 
   ============================ */ 
/* News Detail Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* News Article */
.news-article {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.news-header {
    padding: 1.5rem 1.5rem 0;
}

.news-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.news-badges .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
}

.news-featured-image {
    margin-bottom: 1.5rem;
}

.news-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.news-content {
    padding: 0 1.5rem;
}

.news-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.news-content h2 {
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #212529;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.news-content ul, 
.news-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.news-content li {
    margin-bottom: 0.5rem;
}

.news-quote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.news-quote blockquote {
    margin: 0;
}

.news-quote p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.news-quote footer {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: normal;
}

.news-cta {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.news-cta h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-tags {
    color: #6c757d;
}

.news-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 50px;
    color: #495057;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.news-tag:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-share:hover {
    transform: translateY(-3px);
}

.social-share.facebook {
    background-color: #3b5998;
}

.social-share.twitter {
    background-color: #1da1f2;
}

.social-share.telegram {
    background-color: #0088cc;
}

.social-share.email {
    background-color: #6c757d;
}

/* Author Box */
.author-box {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.author-avatar {
    margin-right: 1.5rem;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-bio {
    color: #6c757d;
    margin-bottom: 1rem;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #6c757d;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Comments Section */
.comments-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comments-section h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.comment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-avatar {
    margin-right: 1rem;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.comment-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.comment-text p {
    margin-bottom: 0.5rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-actions a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-actions a:hover {
    color: var(--primary-color);
}

.comment-replies {
    margin-left: 2rem;
    margin-top: 1rem;
}

.comment-replies .comment-item {
    border-bottom: none;
    padding-bottom: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Related News */
.related-news-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.related-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-news-img {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
}

.related-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.related-news-info {
    flex-grow: 1;
}

.related-news-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-news-info h5 a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-info h5 a:hover {
    color: var(--primary-color);
}

.related-news-meta {
    color: #6c757d;
    font-size: 0.85rem;
}

.related-news-meta span {
    margin-right: 1rem;
}

/* Category List */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.category-count {
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Newsletter Box */
.newsletter-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    padding-left: 1.25rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

/* Game Banner */
.game-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.game-banner img {
    width: 100%;
    height: auto;
}

.game-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.game-banner-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-banner-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .news-header,
    .news-content,
    .news-footer {
        padding: 1rem;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comment-item {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comment-replies {
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 1.5rem;
    }
    
    .news-quote p {
        font-size: 1rem;
    }
    
    .author-avatar img {
        width: 80px;
        height: 80px;
    }
} 
 
/* ============================ 
   Styles from: news.css 
   ============================ */ 
/* News Page Specific Styles */

/* News Banner */
.news-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/news-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    border-radius: 50px 0 0 50px;
    padding-left: 20px;
    height: 50px;
    border: none;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    width: 60px;
    height: 50px;
}

/* Section Titles */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filters .btn {
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Featured News Card */
.featured-news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-5px);
}

.featured-news-card .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-news-card img {
    object-fit: cover;
}

/* News Cards */
.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card .badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.news-meta span {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Newsletter Form */
.newsletter-form .form-control {
    height: 50px;
    border-radius: 50px 0 0 50px;
    padding-left: 20px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.5rem 1.5rem;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-radius: 4px;
    margin: 0 3px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .news-banner {
        padding: 60px 0;
    }
    
    .featured-news-card .card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news-banner {
        padding: 40px 0;
    }
    
    .news-card .card-img-top {
        height: 180px;
    }
    
    .featured-news-card .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .search-box .form-control,
    .search-box .btn {
        height: 45px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        height: 45px;
    }
} 
 
/* ============================ 
   Styles from: profile.css 
   ============================ */ 
/* Profile Page Specific Styles */

/* Avatar Styles */
.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.avatar-edit {
    position: absolute;
    right: 0;
    bottom: 0;
}

.avatar-edit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.avatar-edit-icon:hover {
    background-color: #0b5ed7;
    transform: scale(1.1);
}

/* Profile Sidebar */
.profile-sidebar {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.profile-info h4 {
    font-weight: 600;
}

.level-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.profile-stats {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.stat-item h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-menu {
    margin-top: 1.5rem;
}

.profile-menu .nav-link {
    color: #495057;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.profile-menu .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.profile-menu .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Account Stats */
.account-stat {
    padding: 1rem;
}

.account-stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.account-stat h3 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Recent Games */
.recent-game-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.recent-game-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.recent-game-info {
    padding: 0.75rem;
    flex-grow: 1;
}

.recent-game-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Activity List */
.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-right: 1rem;
    flex-shrink: 0;
}

.activity-content p {
    margin-bottom: 0.25rem;
}

/* Event Cards */
.event-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    min-width: 60px;
}

.event-date .event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-info {
    padding: 0.75rem;
    flex-grow: 1;
}

.event-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Game Library */
.game-library-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.game-library-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-library-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-library-item:hover .game-library-overlay {
    opacity: 1;
}

.game-library-info {
    padding: 1rem;
    background-color: #fff;
}

.game-library-info h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Friend Items */
.friend-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.friend-avatar {
    position: relative;
    margin-right: 1rem;
}

.friend-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.status-indicator.online {
    background-color: #28a745;
}

.status-indicator.offline {
    background-color: #6c757d;
}

.friend-info {
    flex-grow: 1;
}

.friend-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.friend-actions {
    display: flex;
    gap: 0.5rem;
}

/* Achievement Items */
.achievement-stats {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.achievement-stat h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.achievement-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.achievement-icon {
    margin-right: 1rem;
}

.achievement-icon img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.achievement-info {
    flex-grow: 1;
}

.achievement-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Transactions Table */
.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    color: #495057;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .avatar-lg {
        width: 80px;
        height: 80px;
    }
    
    .account-stat-icon {
        font-size: 2rem;
    }
    
    .game-library-img,
    .game-library-overlay {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .profile-sidebar {
        margin-bottom: 2rem;
    }
    
    .avatar-lg {
        width: 70px;
        height: 70px;
    }
    
    .friend-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .profile-menu .nav-link {
        padding: 0.5rem 0.75rem;
    }
    
    .friend-actions {
        flex-direction: column;
    }
    
    .friend-actions .btn {
        width: 100%;
    }
} 
 
/* ============================ 
   Styles from: register.css 
   ============================ */ 
/* Register Page Specific Styles */

body {
    background-color: #f5f5f5;
}

.register-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.register-card .card-header {
    border-bottom: none;
}

.register-card .card-body {
    padding: 2rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group .btn-outline-secondary {
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Password strength indicator */
.password-strength {
    margin-top: 0.5rem;
}

.password-strength .progress {
    height: 4px;
    margin-bottom: 0.25rem;
}

/* Animation for alerts */
@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.alert {
    animation: slideDown 0.4s ease-out;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .register-card .card-body {
        padding: 1.5rem;
    }
} 
 
/* ============================ 
   Styles from: settings.css 
   ============================ */ 
/* Settings Page Specific Styles */

/* Avatar Styles */
.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.avatar-edit {
    position: absolute;
    right: 0;
    bottom: 0;
}

.avatar-edit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.avatar-edit-icon:hover {
    background-color: #0b5ed7;
    transform: scale(1.1);
}

/* Settings Sidebar */
.settings-sidebar {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.settings-user h4 {
    font-weight: 600;
}

.settings-menu {
    margin-top: 1.5rem;
}

.settings-menu .nav-link {
    color: #495057;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.settings-menu .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.settings-menu .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

.settings-menu .nav-link.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.settings-menu .nav-link.text-danger.active {
    background-color: var(--danger-color);
    color: #fff;
}

/* Settings Card */
.settings-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.settings-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.settings-card-header h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.settings-card-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.settings-card-body {
    padding: 1.5rem;
}

/* Section Titles */
.settings-section-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

/* Notification Items */
.notification-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item h6 {
    font-weight: 600;
}

/* Privacy Items */
.privacy-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.privacy-item:last-child {
    border-bottom: none;
}

.privacy-item h6 {
    font-weight: 600;
}

/* Session Items */
.session-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.session-item.current-session {
    background-color: #e8f4ff;
    border-left: 4px solid var(--primary-color);
}

.session-item h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.session-device {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Linked Account Items */
.linked-account-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.linked-account-item:last-child {
    border-bottom: none;
}

.linked-account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-right: 1rem;
}

.linked-account-icon.facebook {
    background-color: #3b5998;
}

.linked-account-icon.google {
    background-color: #dd4b39;
}

.linked-account-icon.twitter {
    background-color: #1da1f2;
}

.linked-account-icon.discord {
    background-color: #7289da;
}

.linked-account-item h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
}

.password-strength .progress {
    height: 4px;
    margin-bottom: 0.25rem;
}

/* Form Styles */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Delete Account */
#deleteAccountForm button[type="submit"] {
    opacity: 0.5;
    cursor: not-allowed;
}

#deleteAccountForm button[type="submit"].enabled {
    opacity: 1;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .settings-card-header,
    .settings-card-body {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .settings-sidebar {
        margin-bottom: 2rem;
    }
    
    .avatar-lg {
        width: 80px;
        height: 80px;
    }
    
    .settings-card-header,
    .settings-card-body {
        padding: 1rem;
    }
    
    .linked-account-item {
        flex-direction: column;
    }
    
    .linked-account-item button {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .settings-menu .nav-link {
        padding: 0.5rem 0.75rem;
    }
} 
 
/* ============================ 
   Styles from: style.css 
   ============================ */ 
/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --danger-color: #dc3545;
    --success-color: #198754;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styles */
.main-header {
    background-color: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
}

/* Button Styles */
.btn {
    border-radius: 4px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
footer {
    background-color: #1a1a2e;
}

footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Alert Styles */
.alert {
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Loading indicator */
.loading {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 32px;
    }
    
    .btn {
        padding: 0.4rem 1.2rem;
    }
} 
 
/* ============================ 
   Styles from: support.css 
   ============================ */ 
/* Support Page Specific Styles */

/* Support Banner */
.support-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/support-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    border-radius: 50px 0 0 50px;
    padding-left: 20px;
    height: 50px;
    border: none;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    width: 60px;
    height: 50px;
}

/* Section Titles */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Support Cards */
.support-card {
    border: none;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

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

.support-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.support-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    background-color: #fff;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Contact Info Card */
.contact-info-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    padding: 1rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-info-item h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .support-banner {
        padding: 60px 0;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .support-banner {
        padding: 40px 0;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .search-box .form-control,
    .search-box .btn {
        height: 45px;
    }
    
    .contact-form .btn {
        padding: 0.6rem 1.5rem;
    }
} 
 
/* ============================ 
   Styles from: wallet.css 
   ============================ */ 
/* Wallet Page Specific Styles */

/* Avatar Styles */
.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Wallet Summary Card */
.wallet-summary-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wallet-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.wallet-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wallet-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.wallet-balance-section {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.balance-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.balance-card.diamond {
    border-left: 4px solid #0d6efd;
}

.balance-card.coin {
    border-left: 4px solid #ffc107;
}

.balance-card.ticket {
    border-left: 4px solid #20c997;
}

.balance-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.balance-card.diamond .balance-icon {
    color: #0d6efd;
}

.balance-card.coin .balance-icon {
    color: #ffc107;
}

.balance-card.ticket .balance-icon {
    color: #20c997;
}

.balance-info h3 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.balance-info p {
    color: #6c757d;
    margin-bottom: 0;
}

.wallet-actions {
    padding: 1.5rem;
}

/* Wallet Card */
.wallet-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wallet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.wallet-card-header h3 {
    font-weight: 700;
    margin-bottom: 0;
}

.wallet-card-body {
    padding: 1.5rem;
}

/* Transaction Table */
.transaction-table th {
    font-weight: 600;
    color: #495057;
}

.transaction-table td {
    vertical-align: middle;
}

/* Payment Methods */
.payment-method-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.payment-method-item:last-child {
    border-bottom: none;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.payment-icon.visa {
    background-color: #1a1f71;
}

.payment-icon.mastercard {
    background-color: #eb001b;
}

.payment-icon.momo {
    background-color: #ae2070;
    font-size: 0.75rem;
    font-weight: bold;
}

.payment-icon.new-card {
    background-color: #6c757d;
}

/* Promotion Items */
.promotion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.promotion-item:last-child {
    margin-bottom: 0;
}

.promotion-content h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promotion-content p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.promotion-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Diamond Packages */
.diamond-package {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.diamond-package:last-child {
    border-bottom: none;
}

.diamond-package:hover {
    background-color: #f8f9fa;
}

.diamond-package.best-value {
    position: relative;
    background-color: #f0f9ff;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.best-value-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0 8px 0 8px;
}

.diamond-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    margin-right: 1rem;
}

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

.diamond-icon span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Modal Styles */
.diamond-packages {
    margin-bottom: 1.5rem;
}

.diamond-package-option {
    position: relative;
    height: 100%;
}

.diamond-package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.diamond-package-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.diamond-package-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}

.diamond-package-option.best-value {
    position: relative;
}

.diamond-package-option .best-value-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0 8px 0 8px;
    z-index: 1;
}

.package-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.package-icon span {
    font-weight: 600;
}

.package-info {
    text-align: center;
}

.package-info span {
    font-weight: 600;
}

.payment-method-radio {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-method-radio:last-child {
    margin-bottom: 0;
}

.payment-method-radio .form-check-input {
    margin-top: 0.75rem;
}

.payment-method-radio .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.payment-method-radio:has(.form-check-input:checked) {
    border-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}

.order-summary {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.order-summary h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.exchange-options {
    margin-bottom: 1.5rem;
}

.exchange-rate-info {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .wallet-header,
    .wallet-balance-section,
    .wallet-actions,
    .wallet-card-header,
    .wallet-card-body {
        padding: 1.25rem;
    }
    
    .balance-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .wallet-header,
    .wallet-balance-section,
    .wallet-actions,
    .wallet-card-header,
    .wallet-card-body {
        padding: 1rem;
    }
    
    .balance-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .balance-icon {
        font-size: 1.75rem;
    }
    
    .promotion-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .promotion-action {
        margin-top: 1rem;
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .wallet-actions .btn {
        font-size: 0.9rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .diamond-package-option label {
        padding: 0.75rem;
    }
    
    .package-icon i {
        font-size: 1.25rem;
    }
} 
 
