/* Modern Gaming Disclaimer Styles - Free Fire Point Calculator */

/* Container with Advanced Glassmorphism & Cyberpunk Glow */
.info-content-container {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.4));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect: Subtle Gold Glow Border */
.info-content-container:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6),
                inset 0 0 20px rgba(250, 204, 21, 0.05);
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-2px);
}

/* Top Accent Line */
.info-content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #facc15, transparent);
    opacity: 0.7;
}

@media (min-width: 1024px) {
    .info-content-container {
        padding: 3rem;
    }
}

.info-section {
    margin-bottom: 2.5rem;
    position: relative;
}

/* Headings with Gradient & Tech Style */
.info-heading {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Vertical Bar Accent for Headings */
.info-heading::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(to bottom, #facc15, #ca8a04);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
    border-radius: 2px;
}

.info-text {
    color: #cbd5e1; /* slate-300 */
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

/* Highlighted Text */
.info-text strong {
    color: #f8fafc;
    font-weight: 600;
    border-bottom: 1px solid rgba(250, 204, 21, 0.3);
}

/* Modern List Styles with Custom Markers */
.info-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    font-family: 'Exo 2', sans-serif;
}

.info-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.info-list li:hover {
    transform: translateX(5px);
    color: #f1f5f9;
}

/* Custom Bullet Point (Diamond Shape) */
.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: #facc15;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
    transition: all 0.3s ease;
}

.info-list li:hover::before {
    background-color: #fff;
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.8);
}

/* Links with Animated Underline & Glow */
.info-link {
    color: #facc15;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.info-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #facc15;
    box-shadow: 0 0 8px #facc15;
    transition: width 0.3s ease;
}

.info-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.6);
}

.info-link:hover::after {
    width: 100%;
}

/* Last Updated Section - Tech Footer Look */
.last-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.2);
    color: #64748b;
    font-size: 0.85rem;
    font-family: 'Orbitron', monospace; /* Tech feel */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Right aligned */
    gap: 0.5rem;
    opacity: 0.8;
}

.last-updated:hover {
    opacity: 1;
    color: #94a3b8;
}
