/* ==========================================
   1. FUENTES Y VARIABLES
   ========================================== */

/* Custom Font Declarations */
@font-face {
    font-family: 'StreemFont';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
         url('../fonts/Inter-Regular.woff') format('woff'),
         url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'StreemFont';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
         url('../fonts/Inter-Regular.woff') format('woff'),
         url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Variables de colores */
:root {
    /* Colores base */
    --color-gray: #95969b;
    --color-white: #ffffff;
    --color-dark-blue: #0a0d18;
    --color-medium-blue: #21242e;
    --color-orange: #ff3f2e;
    --color-green: #2effa0;
    --color-transparent: transparent;
    --color-dark-gray: #67696f;
    
    /* Variables para fondos */
    --bg-gray: var(--color-gray);
    --bg-white: var(--color-white);
    --bg-dark-blue: var(--color-dark-blue);
    --bg-medium-blue: var(--color-medium-blue);
    --bg-orange: var(--color-orange);
    --bg-green: var(--color-green);
    --bg-transparent: var(--color-transparent);
    --bg-dark-gray: var(--color-dark-gray);
    
    /* Variables para bordes */
    --border-gray: var(--color-gray);
    --border-white: var(--color-white);
    --border-dark-blue: var(--color-dark-blue);
    --border-medium-blue: var(--color-medium-blue);
    --border-orange: var(--color-orange);
    --border-green: var(--color-green);
    --border-transparent: var(--color-transparent);
    --border-dark-gray: var(--color-dark-gray);
    
    /* Variables para textos */
    --text-gray: var(--color-gray);
    --text-white: var(--color-white);
    --text-dark-blue: var(--color-dark-blue);
    --text-medium-blue: var(--color-medium-blue);
    --text-orange: var(--color-orange);
    --text-green: var(--color-green);
    --text-transparent: var(--color-transparent);
    --text-dark-gray: var(--color-dark-gray);
}

/* ==========================================
   2. RESET Y ESTILOS GENERALES
   ========================================== */

/* Estilos generales */
body {
    background-color: var(--bg-dark-blue);
    color: var(--text-white);
    font-family: 'StreemFont', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'StreemFont', Arial, sans-serif;
    font-weight: bold;
}

/* Clase para texto con gradiente */
.gradient-text {
    color: #ff702e;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    background-clip: text;
    background-image: linear-gradient(142deg, #ca2173 9.04%,#ff702e 94.04%);
    background-repeat: repeat;
    background-size: 100%;
}

/* Reset de estilos para enlaces */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset para listas */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Ajuste para el primer section para compensar el header fijo */
section:first-of-type {
    padding-top: 148px !important;
}

.main-content section:first-child {
    padding-top: 148px !important;
}

/* Clase especÃƒÆ’Ã‚Â­fica para aplicar el espacio del header */
.header-offset {
    padding-top: 148px !important;
}

/* ==========================================
   3. ELEMENTOS DE FORMULARIO
   ========================================== */

input, 
button, 
select, 
textarea,
.btn {
    font-family: 'StreemFont', Arial, sans-serif;
    padding: 14px 20px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

input:focus, 
select:focus, 
textarea:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 2px rgba(255, 112, 46, 0.2);
}

button,
.btn {
    cursor: pointer;
    background-color: var(--bg-orange);
    color: var(--text-white);
    border: none;
    font-weight: 600;
    display: inline-block;
}

button:hover,
.btn:hover {
    background-color: #f35d4f;
}

.btn-secondary {
    background-color: var(--bg-dark-gray);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: #44464a;
    color: var(--text-white);
}

/* ==========================================
   4. HEADER Y NAVEGACIÃƒÆ’Ã¢â‚¬Å“N
   ========================================== */

/* Estilos del Header */
.main-header {
    background-color: var(--bg-transparent);
    border-bottom: 1px solid var(--border-transparent);
    padding: 14px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-scrolled {
    background-color: var(--bg-dark-blue);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    margin: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Barra de bÃƒÆ’Ã‚Âºsqueda */
.search-bar {
    flex-grow: 1;
    max-width: 400px;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
    position: relative;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-dark-blue) inset !important;
    box-shadow: 0 0 0 1000px var(--bg-dark-blue) inset !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

.search-bar input[type="text"] {
    width: 100%;
    border: 1px solid var(--border-gray);
    background-color: var(--bg-dark-blue);
    color: var(--text-white);
    font-size: 0.9rem;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px 10px;
}

.search-bar button:hover {
    color: var(--text-accent);
}

/* NavegaciÃƒÆ’Ã‚Â³n principal */
.main-nav {
    margin-left: auto; /* empuja este div hacia la derecha */
    margin-right: 0;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
    margin-left: 20px;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 20px 0;
    display: block;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--text-accent);
}

/* MenÃƒÆ’Ã‚Âº desplegable */
.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-medium-blue);
    border-radius: 3px;
    min-width: 180px;
    display: none;
    box-shadow: 0 5px 15px var(--shadow-color);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 16px 20px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* BotÃƒÆ’Ã‚Â³n de menÃƒÆ’Ã‚Âº mÃƒÆ’Ã‚Â³vil */
.mobile-menu-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Estilo para el botÃƒÆ’Ã‚Â³n de acceso al perfil */
.access-profile-btn,
.auth-profile-btn {
    align-items: center;
    font-size: 0.9rem !important;
    border-radius: 50px;
    color: var(--text-gray);
    cursor: pointer;
    display: inline-flex;
    font-weight: 400;
    justify-content: center;
    line-height: 1rem;
    padding: 10px 18px !important;
    position: relative;
    background: linear-gradient(#0a0d18, #0a0d18) padding-box, linear-gradient(142deg, #ca2173 9.04%, #ff5900 94.04%) border-box;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.auth-btn {
    padding: 0 !important;
}

.auth-profile-btn {
    max-width: 42px !important;
    background: #21242e !important;
    max-height: 42px !important;
    width: 22px !important;
    height: 22px !important;
    display: flex !important;
    padding: 10px !important;
    border: 0 !important;
}

.auth-profile-btn > img {
    width: 24px;
}
/* ==========================================
   5. ERROR 404
   ========================================== */

.error-container {
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

/* ==========================================
   6. HERO
   ========================================== */

.hero-section {
    padding: 5rem 0;
    background-color: rgb(10 13 24 / 35%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 13, 24, 0.9) 0%, rgba(10, 13, 24, 0.7) 50%, rgba(10, 13, 24, 0.5) 100%);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-content h1,
.display-1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-search-bar {
    display: none;
    margin-top: 15px; /* Add some space above */
    margin-bottom: 15px; /* Add some space below */
    /* Add any specific styling needed for the search bar in this position */
}
/* ==========================================
   All Platforms Page
   ========================================== */

.all-platforms-section,
.platforms-section {
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

.platforms-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    background-color: var(--bg-medium-blue);
    border: 1px solid var(--border-gray);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    min-width: 180px;
    cursor: pointer;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(142deg, #1123af 9.04%, #0063e4 94.04%);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn {
    background-color: var(--bg-medium-blue);
    border: 1px solid var(--border-gray);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: var(--bg-orange);
    color: var(--text-white);
}

.pagination-btn.active {
    background-color: var(--bg-orange);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .platforms-filter {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: start;
    }
    
    .filter-select {
        width: 100%;
        margin-top: 6px;
    }
}

.platform-details-section,
.package-details-section {
    padding-top: 0 !important;
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

.popular-accounts-section {
    padding-top: 0 !important;
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.popular-accounts-grid,
.packages-grid,
.related-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card,
.package-card,
.related-platform-card {
    background-color: var(--bg-dark-blue);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(142deg, #ca2173 9.04%, var(--text-orange) 94.04%);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.platform-image,
.package-image,
.related-platform-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    background-color: var(--bg-dark-blue);
    position: relative;
}

.platform-image img,
.package-image img,
.related-platform-image img{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    transition: opacity 0.3s ease;
}

.platform-image img:hover,
.package-image img:hover,
.related-platform-image img:hover {
    opacity: 0.7;
}

.platform-name,
.package-name,
.related-platform-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.platform-description,
.package-description,
.related-platform-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.platform-price,
.package-price,
.related-platform-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.type-platform {
    border-top-right-radius: 0.5rem;
    background-color: #ffffff;
    padding: 4px 12px;
    color: #ff3f2e;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.discount-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-accent);
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    text-align: center;
}

.section-footer {
    text-align: center;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-orange);
    color: var(--text-orange);
}

.btn-outline:hover {
    background-color: var(--bg-orange);
    color: var(--text-white);
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    grid-column: 1 / -1;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--text-orange);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message, .no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .popular-accounts-grid,
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .popular-accounts-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .popular-accounts-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.popular-packages-section {
    padding-top: 0 !important;
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

/* ==========================================
   5. FOOTER
   ========================================== */

.main-footer {
    background-color: var(--bg-medium-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    margin: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-categories h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links ul li,
.footer-categories ul li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-categories a {
    color: var(--text-white);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-right: 0.5rem;
    color: #67696f;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark-gray);
    border-radius: 6px;
    color: var(--text-medium-blue);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: white;
}

/* ==========================================
   6. MEDIA QUERIES
   ========================================== */

@media (max-width: 992px) {
    .header-content {
        align-items: center;
    }
    
    #header-search-bar {
        display: none;
    }

    .hero-search-bar {
        display: block; /* Or flex, depending on your .search-bar styling */
        margin: 20px 0;
    }

    .hero-section:first-of-type {
        padding-top: 81px !important;
    }

    .main-nav li:nth-child(1),
    .main-nav li:nth-child(2) {
        display: none;
    }
    
    .main-nav ul {
        flex-direction: row;
    }
    
    .main-nav li {
        margin: 5px 0;
        margin-left: 0;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        padding-left: 20px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 71vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 667px) {
    .container {
        padding: 0 30px;
    }
    .logo h1 {
        margin: 0;
        font-weight: bold;
        font-size: 1rem;
    }

    #balance-btn {
        font-size: 0.8rem !important;
    }
}

/* Search Results Dropdown */
.search-bar {
    position: relative;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-medium-blue);
    border-radius: 0 0 3px 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.search-section {
    padding: 12px 15px;
    border-bottom: 1px solid #353434;
}

.search-section h4 {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #f1f1f1;
    text-transform: uppercase;
}

.search-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-section li {
    margin-bottom: 8px;
}

.search-section li:last-child {
    margin-bottom: 0;
}

.search-section a {
    color: var(--text-white);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: background-color 0.2s;
}

.search-result-item {
    display: flex;
    align-items: center;
}

.search-result-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 4px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
}

.search-result-name {
    font-weight: bold;
}

.search-result-category {
    font-size: 12px;
    color: var(--text-gray);
}

.no-results, .search-error {
    padding: 15px;
    text-align: center;
    color: var(--text-gray);
}

.view-all-results {
    padding: 14px 15px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.view-all-results a {
    color: #b1b1b1;
    text-decoration: none;
    font-weight: bold;
}

.platform-details-content,
.package-details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.platform-image-container,
.package-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.platform-detail-image,
.package-detail-image {
    width: 100%;
    max-height: 241px;
    object-fit: cover;
    border-radius: 3px;
}

.platform-info-container,
.package-info-container {
    flex: 2;
    min-width: 300px;
}

.platform-title,
.package-title {
    margin-top: 0;
    margin-bottom: 1rem;
}

.platform-category,
.package-category {
    margin-bottom: 1rem;
}

.platform-price-container,
.package-price-container {
    margin-bottom: 1.5rem;
}

.platform-description,
.package-description {
    margin-bottom: 1rem;
}

.purchase-options {
    margin-top: 2rem;
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-decrease, .quantity-increase {
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0;
}

#quantity {
    width: 30px;
    text-align: center;
}

.total-price {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-details-content {
        flex-direction: column;
    }
    
    .platform-image-container, 
    .platform-info-container {
        width: 100%;
    }
    
    .account-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ... existing code ... */

.breadcrumbs {
    margin-bottom: 2rem;
}

/* Platform Features Styling */
.platform-features {
    margin-bottom: 3rem;
}

.platform-features h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-white);
}

.features-list li i {
    color: var(--text-green);
    font-size: 1.1rem;
}

/* Related Platforms Styling */
.related-platforms {
    margin-top: 3rem;
}

.related-platforms h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsive adjustments for platform features */
@media (max-width: 992px) {
    .related-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .related-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-features {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .related-platforms-grid {
        grid-template-columns: 1fr;
    }
}