* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ========== SECTION MENU ========== */
/* ===== DROP-DOWN MENU (HOVER + CLICK) ===== */
.top-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    background: transparent;
    padding: 0;
}

/* Menu button */
.menu-toggle {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ffd700;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 5px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    border-bottom: 4px solid #ffd700;
}

.menu-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: rgba(20, 20, 20, 0.95);
    border-color: #ffd700;
}

.menu-toggle i {
    font-size: 2.2rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.menu-toggle span {
    font-size: 0.8rem;
    margin-top: 2px;
    color: #ffd700;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Arrow indicator */
.menu-toggle::after {
    content: '▼';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: bounceArrow 2s infinite;
    text-shadow: 0 0 5px #ffd700;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* Menu items container */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-top: 2px solid #ffd700;
    position: relative;
}

/* Arrow pointing to button */
.menu-items::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 15px;
    height: 15px;
    background: rgba(0, 0, 0, 0.85);
    border-left: 1px solid #ffd700;
    border-top: 1px solid #ffd700;
    transform: rotate(45deg);
    backdrop-filter: blur(15px);
}

/* Hover effect */
.top-menu:hover .menu-items,
.top-menu.click-open .menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu items */
.menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item i {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
    transition: all 0.3s ease;
    color: #ffd700;
}

.menu-item span {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(8px);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.menu-item:hover i {
    transform: scale(1.2);
}

/* Category colors on hover */
.menu-item:nth-child(1):hover i { color: #4CAF50; }
.menu-item:nth-child(2):hover i { color: #2196F3; }
.menu-item:nth-child(3):hover i { color: #FFC107; }
.menu-item:nth-child(4):hover i { color: #5865F2; }
.menu-item:nth-child(5):hover i { color: #ff4444; }

/* Active menu item */
.menu-item.active {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid #ffd700;
}

.menu-item.active i {
    color: #ffd700;
}

/* Entry animation */
.menu-items .menu-item {
    animation: slideInItem 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-10px);
}

.menu-items .menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-items .menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-items .menu-item:nth-child(3) { animation-delay: 0.15s; }
.menu-items .menu-item:nth-child(4) { animation-delay: 0.2s; }
.menu-items .menu-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tooltip */
.menu-hint {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #ffd700;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.top-menu:hover .menu-hint {
    opacity: 1;
}

/* ========== POSESIONES ========== */
/* ===== MAIN CONTENT ===== */
.content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.4);
    min-height: 100vh;
    padding: 100px 0 50px 0;
}

h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: fadeIn 2s ease;
    text-align: center;
}

.epic-description {
    font-size: 2rem;
    margin-bottom: 3rem;
    min-height: 100px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.social-icons {
    display: flex;
    gap: 4rem;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

.icon-link:hover {
    transform: translateY(-20px);
}

.icon-link i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: 2px solid white;
}

.icon-link span {
    font-size: 1.2rem;
    background: rgba(0,0,0,0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.discord:hover i {
    color: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 0 30px #5865F2;
}

.sythe:hover i {
    color: #ff4444;
    border-color: #ff4444;
    box-shadow: 0 0 30px #ff4444;
}

/* ===== AUDIO BUTTON ===== */
.audio-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.audio-btn.muted {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff4444;
    color: #ff4444;
}

/* ===== CATEGORY PANEL ===== */
.category-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    overflow-y: auto;
}

.category-panel.open {
    right: 0;
}

.panel-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.panel-header h2 {
    font-size: 2rem;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.close-panel {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-panel:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.panel-content {
    padding: 30px;
}

/* Category section styles */
.category-section {
    animation: slideInContent 0.5s ease;
}

.category-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.service-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateX(10px);
}

.service-list li i {
    margin-right: 15px;
    color: #ffd700;
    width: 20px;
    text-align: center;
}

.service-list .price {
    margin-left: auto;
    color: #4CAF50;
    font-weight: bold;
    background: rgba(76, 175, 80, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #4CAF50;
}

/* Panel overlay */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== AUDIO ACTIVATION OVERLAY ===== */
.click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: pointer;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(5px);
}

.click-overlay p {
    background: rgba(0,0,0,0.6);
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .epic-description {
        font-size: 1.2rem;
    }
    
    .social-icons {
        gap: 2rem;
    }
    
    .top-menu {
        top: 15px;
        right: 15px;
    }
    
    .menu-toggle {
        width: 60px;
        height: 60px;
    }
    
    .menu-toggle i {
        font-size: 1.8rem;
    }
    
    .menu-toggle span {
        font-size: 0.7rem;
    }
    
    .menu-items {
        min-width: 200px;
    }
    
    .menu-item {
        padding: 10px 15px;
    }
    
    .menu-item i {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .menu-item span {
        font-size: 0.9rem;
    }
    
    .category-panel {
        width: 100%;
        right: -100%;
    }
    
    .click-overlay p {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .epic-description {
        font-size: 1rem;
    }
    
    .social-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .top-menu {
        top: 10px;
        right: 10px;
    }
    
    .menu-toggle {
        width: 55px;
        height: 55px;
    }
    
    .menu-toggle i {
        font-size: 1.6rem;
    }
    
    .menu-items {
        min-width: 180px;
    }
}

/* ===== PAGE STYLES ===== */
.page-content {
    justify-content: flex-start;
    padding-top: 150px;
    overflow-y: auto;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

/* Grids */
.services-grid,
.accounts-grid,
.gold-grid,
.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cards */
.service-card,
.account-card,
.gold-card,
.bot-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover,
.account-card:hover,
.gold-card:hover,
.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.service-card i,
.account-card i,
.gold-card i,
.bot-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.service-card h3,
.account-card h3,
.gold-card h3,
.bot-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.service-card p,
.account-card ul,
.bot-card p {
    margin-bottom: 20px;
    color: #ccc;
}

.account-card ul {
    list-style: none;
    text-align: left;
    padding: 0 10px;
}

.account-card ul li {
    margin-bottom: 8px;
    color: #aaa;
    font-size: 0.9rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

.buy-btn {
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    border: none;
    color: black;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffd700;
}

/* Popular card */
.popular {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.info-text {
    margin-top: 30px;
    color: #4CAF50;
    font-size: 1.2rem;
    text-align: center;
}

/* ===== ACCOUNTS WITH IMAGES ===== */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.account-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.account-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.account-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.account-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.account-card:hover .account-image img {
    transform: scale(1.1);
}

.account-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid #ffd700;
    z-index: 1;
}

.account-info {
    padding: 20px;
}

.account-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #ffd700;
}

.account-id {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    font-family: monospace;
}

.account-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.stat i {
    color: #ffd700;
    margin-right: 5px;
}

.account-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.detail-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #ffd700;
}

.account-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.account-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 0;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    border: 1px solid #ffd700;
    animation: modalSlideIn 0.5s;
    color: white;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #ffd700;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: #ff4444;
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.modal-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ffd700;
}

.modal-image img {
    width: 100%;
    height: auto;
}

.modal-info h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.modal-info table {
    width: 100%;
    border-collapse: collapse;
}

.modal-info td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-info td:first-child {
    color: #888;
    width: 40%;
}

.modal-info td:last-child {
    color: #ffd700;
    font-weight: bold;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GLASS CONTAINER ===== */
.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: fadeInScale 1.2s ease-out;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== PAYMENT METHODS - CORREGIDO ===== */
.payment-section {
    text-align: center;
    max-width: 1100px;
    width: 100%;
    padding: 0 20px;
    margin-top: 20px;
}

.payment-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    display: inline-block;
}

.payment-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, #ffd700, #ffd700, transparent);
    border-radius: 3px;
}

/* INLINE PAYMENT METHODS - CORREGIDO */
.payment-methods-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.payment-method {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 130px;
    justify-content: center;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.payment-method:hover::before {
    left: 100%;
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.payment-method i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.payment-method:hover i {
    transform: scale(1.2) rotate(360deg);
}

.payment-method span {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Payment colors */
.payment-method:nth-child(1) i { color: #003087; } /* PayPal */
.payment-method:nth-child(2) i { color: #ffd700; } /* OSRSGP */
.payment-method:nth-child(3) i { color: #f7931a; } /* BTC */
.payment-method:nth-child(4) i { color: #26a17b; } /* USDT */
.payment-method:nth-child(5) i { color: #627eea; } /* ETH */
.payment-method:nth-child(6) i { color: #2775ca; } /* USDC */

.payment-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 20px;
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }
}

/* ===== AJUSTES RESPONSIVE ADICIONALES ===== */
html, body {
    width: 100%;
    overflow-x: hidden;
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Ajuste para el menú en pantallas pequeñas */
@media screen and (max-width: 768px) {
    .menu-items {
        min-width: 180px;
    }
    
    .menu-item {
        padding: 8px 15px;
    }
    
    .menu-item i {
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .menu-item span {
        font-size: 0.8rem;
    }
    
    .payment-methods-inline {
        gap: 15px;
    }
    
    .payment-method {
        padding: 10px 20px;
        min-width: 120px;
    }
    
    .payment-method i {
        font-size: 1.5rem;
    }
    
    .payment-method span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .payment-methods-inline {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-method {
        width: 100%;
        max-width: 250px;
    }
}

/* Ajuste para que los métodos de pago siempre estén centrados */
.payment-methods-inline {
    justify-content: center;
    align-items: center;
}

/* Ajuste para el logo */
.logo {
    width: min(80px, 15vw);
    height: min(80px, 15vw);
}

.logo i {
    font-size: min(3rem, 8vw);
}

/* Responsive for accounts */
@media (max-width: 768px) {
    .accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-details {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .accounts-grid,
    .gold-grid,
    .bots-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .popular {
        transform: scale(1);
    }
}

/* Logo image styles */
.logo-image-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo-image {
    max-width: 100%;
    height: auto;
    width: 400px; /* Ajusta según el tamaño de tu logo */
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive para el logo */
@media (max-width: 768px) {
    .logo-image {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 250px;
    }
}

/* ===== ICONOS PERSONALIZADOS ===== */
.custom-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    transition: all 0.5s ease;
}

.service-card:hover .custom-icon {
    transform: scale(1.2) rotate(360deg);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}

/* Responsive para iconos */
@media (max-width: 768px) {
    .custom-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .custom-icon {
        width: 45px;
        height: 45px;
    }
}

/* Si quieres mantener compatibilidad con Font Awesome */
.service-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(360deg);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}
