/* General styles for the OTP section container */
.otp-section, .account-section, .game-section, .credit-section, .mobile-section, .social-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    /* background-color: #0d0d1a; Very dark purple/black background */
    color: #fff;
}

/* Section title */
.row-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.row-title h1 {
    font-size: 24px;/* Light purple for titles */
    font-weight: 600;
}

.row-title .see-all {
    color: #fff;
    border: 2px solid var(--accent-purple); /* Neon purple border */
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
}

.row-title .see-all:hover {
    border-color: var(--accent-purple); /* Brighter purple on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--accent-purple);
}

/* Grid layout for OTP cards */
.otp-grid, .account-grid, .game-grid, .credit-grid, .mobile-grid, .social-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    grid-template-columns: repeat(6, minmax(200px, 1fr));
    gap: 20px;
    row-gap: 20px;
    column-gap: 10px;
    margin-bottom: 40px;
}

/* OTP card styling */
.otp-card, .account-card, .game-card, .credit-card, .mobile-card, .social-card {
    background-color: #1e1e3f; /* Dark purple card background */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-purple); /* Neon purple border */
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

/* Hover effect for OTP cards */
.otp-card:hover, .account-card:hover, .game-card:hover, .credit-card:hover, .mobile-card:hover, .social-card:hover {
    border-color: var(--accent-purple); /* Brighter purple on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--accent-purple);
}

/* Image styling for OTP cards */
.img-otp, .img-account, .img-game, .img-credit, .img-mobile, .img-social {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Card titles */
.otp-card h3, .account-card h3, .game-card h3, .credit-card h3, .mobile-card h3, .social-card h3 {
    font-size: 16px; /* Very light purple for text */
    margin: 10px 0;
    /* font-weight: 500; */
}

/* Button (OTP) styling */
.btn-otp, .btn-account, .btn-game, .btn-credit, .btn-mobile {
    color: #fff;
    border: 2px solid var(--accent-purple); /* Neon purple border */
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-otp:hover, .btn-account:hover, .btn-game:hover, .btn-credit:hover, .btn-mobile:hover { /* Brighter purple on hover */
    border-color: #6f00ff; /* Match hover border color */
}

/* Ensure text and buttons are centered and visually appealing */
.otp-card, .account-card, .game-card, .credit-card, .mobile-card, .social-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .otp-grid, .account-grid, .game-grid, .credit-grid, .mobile-grid, .social-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .img-otp, .img-account, .img-game, .img-credit, .img-mobile, .img-social {
        height: 120px;
    }

    .btn-otp, .btn-account, .btn-game, .btn-credit, .btn-mobile {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .row-title h1 {
        font-size: 20px;
    }

    .otp-card, .account-card, .game-card, .credit-card, .mobile-card, .social-card {
        padding: 10px;
    }
}