/* Premium Custom Styling for FF Skin Master Tools Landing Page */

:root {
    --ff-orange: #ff5e00;
    --ff-orange-hover: #ff7820;
    --ff-orange-glow: rgba(255, 94, 0, 0.45);
    --ff-gold: #ffc107;
    --ff-gold-glow: rgba(255, 193, 7, 0.3);
    --ff-dark-bg: #08090d;
    --ff-card-bg: rgba(22, 24, 33, 0.7);
    --ff-card-border: rgba(255, 255, 255, 0.06);
    --ff-glass-bg: rgba(255, 255, 255, 0.03);
    --ff-glass-border: rgba(255, 255, 255, 0.06);
    --font-primary: 'Montserrat', sans-serif;
}

body {
    background-color: var(--ff-dark-bg) !important;
    font-family: var(--font-primary) !important;
    color: #e2e8f0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Redesign Background */
.bg-top, .bg-bottom {
    display: none !important;
}

main {
    background: radial-gradient(circle at 50% 15%, rgba(255, 94, 0, 0.15), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08), transparent 50%),
                var(--ff-dark-bg) !important;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

/* Grid Matrix Overlay */
main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Wrapper alignment override */
.main_div {
    background-color: rgba(11, 12, 16, 0.95) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
    z-index: 1;
    max-width: 420px !important;
    width: 100%;
    margin: 0 auto !important;
    min-height: 100vh;
    padding: 24px 18px !important;
    gap: 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.fff_game_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header style rewrite */
.header {
    margin-top: 10px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.indextitle {
    font-family: var(--font-primary) !important;
    font-size: 23px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    background: linear-gradient(135deg, #ffffff 40%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(255, 193, 7, 0.25);
    margin: 0 auto !important;
}

.subtitle {
    font-size: 11px;
    color: #65748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Banner Frame style (No Border/Radius) */
.welcome-banner-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.welcome-banner-container:hover {
    transform: scale(1.015);
}

/* Mask the bottom-right spark icon on the banner asset */
.welcome-banner-container::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-color: #0c0d13; /* Matches the dark corner of the banner card */
    pointer-events: none;
}

.welcome-banner-container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Image-Based Action Grid (Rate, Share, Privacy) - No Border/Radius + Custom Glowing Drop-shadows */
.action-grid-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.action-image-link {
    display: block;
    width: 100%;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-tap-highlight-color: transparent !important;
}

.action-image-link img {
    width: 100%;
    height: auto;
    display: block;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    mix-blend-mode: screen;
    opacity: 0.82;
}

.action-image-link:hover {
    transform: translateY(-4px) scale(1.03);
}

.action-image-link:hover img {
    opacity: 1;
}

.action-image-link:active {
    transform: translateY(1px) scale(0.97);
}

/* Image-Based Get Started Button - No Border/Radius + Glowing Drop-shadow */
.get-started-btn-image {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-tap-highlight-color: transparent !important;
}

.get-started-btn-image img {
    width: 100%;
    height: auto;
    display: block;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    mix-blend-mode: screen;
    opacity: 0.88;
}

.get-started-btn-image:hover {
    transform: translateY(-3px) scale(1.02);
}

.get-started-btn-image:hover img {
    opacity: 1;
}

.get-started-btn-image:active {
    transform: translateY(1px) scale(0.98);
}

/* Feature & Guide Section Cards */
.resp_about_section {
    display: block !important;
    width: 100%;
}

.about_section {
    width: 100% !important;
    margin-top: 10px !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-card {
    background: var(--ff-card-bg);
    border: 1px solid var(--ff-card-border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    text-align: left;
    backdrop-filter: blur(10px);
}

.premium-card h2 {
    font-size: 14.5px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 14px 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid var(--ff-orange);
    padding-left: 10px;
}

/* Feature List Styling */
.feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12.5px !important;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.feature-list li:hover {
    background: rgba(255, 193, 7, 0.04);
    border-color: rgba(255, 193, 7, 0.15);
    transform: translateX(3px);
}

.feature-list li::before {
    content: '✓';
    color: var(--ff-gold);
    font-weight: 800;
    font-size: 13px;
}

/* How to use Step items */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.step-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.step-num {
    background: linear-gradient(135deg, var(--ff-orange) 0%, #ff9500 100%);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.step-text {
    font-size: 12.5px;
    line-height: 1.5;
    color: #cbd5e0;
}

/* Disclaimer text card */
.disclaimer-card {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.12) !important;
}

.disclaimer-card h2 {
    border-left-color: #ef4444;
    color: #fca5a5;
}

.disclaimer-card p {
    font-size: 11.5px !important;
    line-height: 1.6;
    color: #94a3b8 !important;
    margin-top: 0;
    margin-bottom: 10px;
    text-wrap: wrap;
    text-align: justify;
}

.disclaimer-card p:last-child {
    margin-bottom: 0;
}

/* Google ad container override */
.gadsbanner {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

/* Footer style */
footer {
    width: 100% !important;
    margin-top: 10px;
    padding: 12px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #475569 !important;
    font-size: 10px;
}
