/* HELIOS Booster Pack Styling */
.booster-pack-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-royal) 40%, var(--blue-electric) 100%);
    overflow: hidden;
}

.booster-pack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 L100,50 L50,100 L0,50 Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    opacity: 0.2;
    animation: backgroundSlide 60s linear infinite;
}

@keyframes backgroundSlide {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.booster-pack-container {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 24px;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.booster-pack-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.booster-pack-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, var(--gold-premium) 0%, var(--gold-rich) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booster-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
}

.shine-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
    animation: orbitBoost 15s infinite linear;
}

@keyframes orbitBoost {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(400px) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(400px) rotate(-360deg); opacity: 0.3; }
}

.booster-resources {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
}

.resource-item {
    background: rgba(240, 242, 245, 0.9);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.resource-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-premium), var(--gold-rich));
    opacity: 0.7;
    transition: all 0.4s ease;
}

.resource-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: scale(0.5);
    z-index: 0;
}

.resource-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(230, 235, 240, 0.95);
    border-color: var(--gold-premium);
}

.resource-item:hover::before {
    width: 100%;
    opacity: 0.15;
}

.resource-item:hover::after {
    opacity: 0.3;
    transform: scale(1);
}

.resource-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-premium) 0%, var(--gold-rich) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    min-width: 40px;
}

.resource-item:hover .resource-number {
    animation: pulseGlow 1.5s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.7); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.5); }
}

.resource-content {
    position: relative;
    z-index: 1;
}

.resource-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-premium);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.resource-item:hover .resource-content h3 {
    transform: translateX(5px);
}

.resource-content p {
    color: rgba(40, 40, 40, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.resource-item:hover .resource-content p {
    color: rgba(20, 20, 20, 0.95);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .booster-resources {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
  .hero::after {
    /* keep the "by ⬟ fiveinnolabs" text */
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    background: none !important;   /* kill the image that makes the stripe */
    opacity: 1;                    /* ensure the text is visible */
    pointer-events: none;
  }
}

@media (max-width: 768px) {
    .booster-pack-section {
        padding: 80px 0;
    }
    
    .booster-pack-container {
        padding: 30px 20px;
    }
    
    .booster-resources {
        grid-template-columns: 1fr;
    }
    
    .booster-pack-header h2 {
        font-size: 2.5rem;
    }
    
    .booster-subtitle {
        font-size: 1.2rem;
    }
    
    .resource-item {
        padding: 25px;
    }
}