 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background: rgba(0, 0, 0, 0.59);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            min-width: 150px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0 15px;
            border: 1px dashed rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .logo-container:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(212, 175, 55, 0.5);
            color: #d4af37;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 5px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #ffd700);
            transform: translateX(-50%);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover {
            color: #d4af37;
            transform: translateY(-2px);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-link {
            color: #ffffff;
            font-size: 20px;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            color: #d4af37;
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-2px) scale(1.1);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            color: #d4af37;
            transform: scale(1.1);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(-20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 20px;
        }

        .mobile-nav-item {
            margin-bottom: 15px;
        }

        .mobile-nav-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            padding: 15px 0;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #d4af37;
            padding-left: 10px;
        }

        .mobile-social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Content for demonstration */
        .demo-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            color: white;
            text-align: center;
        }

        .demo-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .demo-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .navbar-container {
                padding: 0 15px;
                height: 65px;
            }

            .logo-container {
                min-width: 120px;
                height: 40px;
                padding: 0 10px;
                font-size: 12px;
            }

            .nav-menu {
                display: none;
            }

            .social-icons {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-container {
                padding: 0 10px;
            }

            .logo-container {
                min-width: 100px;
                height: 35px;
                font-size: 11px;
            }
        }

        /* Animación suave para todos los elementos */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Efecto de carga */
        .navbar {
            animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
          body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #0d0d0d 100%);
            min-height: 100vh;
            padding: 20px;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
            z-index: 0;
        }

        .raffle-card-wrapper {
            max-width: 900px;
            margin: 3.5rem auto;
            background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 50%, #252525 100%);
            border-radius: 25px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .raffle-card-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.02) 50%, transparent 70%);
            pointer-events: none;
        }

        /* BARRA DE PROGRESO MEJORADA */
        .progress-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 20px 30px;
            border-bottom: 3px solid transparent;
            border-image: linear-gradient(90deg, #d4af37, #ffd700, #d4af37) 1;
            position: relative;
            overflow: hidden;
        }

        .progress-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .progress-label {
            color: #d4af37;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .progress-percentage {
            color: #ffd700;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4); }
        }

        .progress-bar-container {
            position: relative;
            height: 25px;
            background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid #333;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .progress-bar-bg {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(45deg, #1a1a1a 25%, transparent 25%), 
                        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #1a1a1a 75%), 
                        linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
            background-size: 10px 10px;
            background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
            opacity: 0.3;
        }

        .progress-bar-fill {
            position: relative;
            height: 100%;
            width: var(--progress, 99.62%);
            background: linear-gradient(135deg, #d4af37 0%, #ffd700 25%, #ffed4e 50%, #ffd700 75%, #d4af37 100%);
            border-radius: 12px;
            transition: width 2s ease-out;
            overflow: hidden;
        }

        .progress-bar-fill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: progressShine 2s infinite;
        }

        .progress-bar-fill::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            height: 6px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
            border-radius: 10px;
        }

        @keyframes progressShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .progress-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 12px;
            color: #888;
        }

        .raffle-main-content {
            padding: 35px;
            position: relative;
        }

        .raffle-title {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ticket-price-section {
            text-align: center;
            margin-bottom: 30px;
            padding: 15px;
            background: linear-gradient(145deg, #333, #1e1e1e);
            border-radius: 15px;
            border: 2px solid #d4af37;
            position: relative;
            overflow: hidden;
        }

        .ticket-price-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
            border-radius: 15px;
            z-index: -1;
            animation: borderGlow 3s infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .ticket-price {
            color: #d4af37;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .price-label {
            color: #ccc;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .raffle-image-section {
            position: relative;
            margin-bottom: 30px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.5),
                0 0 0 3px rgba(212, 175, 55, 0.3);
            transform: perspective(1000px) rotateX(2deg);
            transition: transform 0.3s ease;
        }

        .raffle-image-section:hover {
            transform: perspective(1000px) rotateX(0deg) scale(1.02);
        }

        .raffle-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                linear-gradient(-45deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        }

        .image-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #d4af37, #ffd700);
            color: #000;
            padding: 8px 15px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 12px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .raffle-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .detail-item {
            background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 50%, #333 100%);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid #4a4a4a;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .detail-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .detail-item:hover::before {
            left: 100%;
        }

        .detail-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
            border-color: #d4af37;
        }

        .detail-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .detail-item i {
            color: #d4af37;
            font-size: 20px;
            margin-right: 12px;
            width: 25px;
            text-align: center;
        }

        .detail-label {
            color: #ccc;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .detail-value {
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            margin-top: 5px;
        }

        .description-section {
            background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 50%, #252525 100%);
            padding: 25px;
            border-radius: 18px;
            border: 2px solid #3a3a3a;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .description-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #d4af37, #ffd700, #d4af37);
        }

        .description-title {
            color: #d4af37;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .description-title i {
            margin-right: 12px;
            font-size: 24px;
        }

        .description-text {
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 15px;
            text-align: justify;
            margin-left: 20px;
        }

        .action-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            flex: 1;
            min-width: 220px;
            padding: 18px 30px;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before, .btn-secondary::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;
        }

        .btn-primary:hover::before, .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
            color: #1a1a1a;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
        }

        .btn-secondary {
            background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
            color: #d4af37;
            border: 2px solid #d4af37;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px) scale(1.05);
            background: linear-gradient(145deg, #d4af37, #ffd700);
            color: #1a1a1a;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* EFECTOS ADICIONALES */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: #d4af37;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s infinite ease-in-out;
        }

        .floating-elements::before {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-elements::after {
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
        }

        @media (max-width: 768px) {
         
            .raffle-main-content {
                padding: 25px;
            }

            .raffle-title {
                font-size: 26px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                min-width: auto;
            }

            .raffle-details-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }

            .progress-section {
                padding: 15px 20px;
            }
        }
        /* SECCIÓN DE MÉTODOS DE PAGO */
.payment-methods-section {
    background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 50%, #252525 100%);
    padding: 25px;
    border-radius: 18px;
    border: 2px solid #3a3a3a;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.payment-methods-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4aa, #00b894, #00d4aa);
}

.payment-title {
    color: #00d4aa;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-title i {
    margin-right: 12px;
    font-size: 24px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.payment-method {
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 50%, #333 100%);
    border: 2px solid #4a4a4a;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s ease;
}

.payment-method:hover::before {
    left: 100%;
}

.payment-method:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    overflow: hidden;
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.pago-movil {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.binance {
    background: linear-gradient(135deg, #f7931a, #ffb84d);
    color: white;
    box-shadow: 0 5px 15px rgba(247, 147, 26, 0.3);
}

.usdt {
    background: linear-gradient(135deg, #26a17b, #50c878);
    color: white;
    box-shadow: 0 5px 15px rgba(38, 161, 123, 0.3);
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.payment-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 3px;
}

.payment-desc {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-badge {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 212, 170, 0.4);
}

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .payment-method {
        padding: 15px;
    }

    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}