/* MODS PAGE */

.mods-hero {
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0a0a0a, #180000);
}

.mods-hero h1 {
    font-size: 42px;
    color: #ff1f3d;
    margin-bottom: 10px;
}

.mods-hero p {
    color: #aaa;
    font-size: 16px;
}

.mods-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 10%;
}

.category-card {
    background: #111;
    padding: 40px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: 0.4s ease;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.category-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-card p {
    color: #aaa;
    margin-bottom: 20px;
}

.category-card span {
    font-size: 14px;
    color: #ff1f3d;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #ff1f3d;
    box-shadow: 0 20px 40px rgba(255, 31, 61, 0.2);
}

/* Accent variations */
.category-card.free:hover {
    border-color: #ff1f3d;
}

.category-card.paid:hover {
    border-color: #ff7b00;
}

.category-card.sound:hover {
    border-color: #00d4ff;
}

.category-card.gun:hover {
    border-color: #8b5cf6;
}
/* SEARCH BAR */

.search-bar {
    text-align: center;
    padding: 40px 10%;
}

.search-bar input {
    width: 100%;
    max-width: 500px;
    padding: 14px 20px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: #ff1f3d;
}

/* GRID */

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 60px 10%;
}

.mod-card {
    background: #111;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    border: 1px solid #222;
    transition: 0.4s ease;
}

.mod-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mod-card p {
    color: #aaa;
    font-size: 14px;
}

.mod-card:hover {
    transform: translateY(-8px);
    border-color: #ff1f3d;
    box-shadow: 0 15px 35px rgba(255, 31, 61, 0.25);
}

/* ADS SECTION */

.ads-section {
    padding: 60px 10%;
    text-align: center;
}
/* MOD DETAIL ENHANCED */

.mod-detail {
    padding: 160px 10% 100px;
    max-width: 950px;
    margin: auto;
    animation: fadeIn 1s ease;
}

.animated-title {
    font-size: 42px;
    background: linear-gradient(90deg, #ff1f3d, #ff7b00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowPulse 2s infinite alternate;
}

.mod-subtitle {
    color: #aaa;
    margin-bottom: 40px;
}

.video-wrapper {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 31, 61, 0.2);
    transition: 0.4s;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.download-box {
    text-align: center;
    margin: 50px 0;
}

.btn.big {
    padding: 16px 40px;
    font-size: 16px;
}

.mod-description {
    margin-top: 60px;
}

.mod-description h2 {
    color: #ff1f3d;
    margin-bottom: 20px;
}

.mod-description p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tutorial-buttons {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.tutorial-buttons .btn {
    flex: 1;
    text-align: center;
}

/* ANIMATIONS */

@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px rgba(255,31,61,0.4);
    }
    to {
        text-shadow: 0 0 25px rgba(255,31,61,0.8);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.password-text {
    margin-top: 15px;
    color: #aaa;
    font-size: 14px;
}

.password-text strong {
    color: #ff1f3d;
}
.mods-header{
    display:flex;
    justify-content:space-between;
    padding:20px 60px;
    background:#0b0b0b;
    position:sticky;
    top:0;
    z-index:999;
}

.mods-header a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.back-btn{
    background:#ff1e2d;
    padding:8px 16px;
    border-radius:6px;
}

.mods-hero{
    text-align:center;
    padding:60px 20px;
}

.mods-hero h1{
    font-size:42px;
    color:#ff1e2d;
    text-shadow:0 0 25px rgba(255,0,0,0.7);
}

.mods-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:40px 80px 80px;
}

.mod-card{
    background:#111;
    border-radius:18px;
    overflow:hidden;
    transition:0.4s ease;
    position:relative;
    box-shadow:0 0 20px rgba(255,0,0,0.2);
}

.mod-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 0 40px rgba(255,0,0,0.5);
}

.mod-card img{
    width:100%;
    display:block;
}

.mod-content{
    padding:20px;
    text-align:center;
}

.mod-content h3{
    margin-bottom:15px;
    color:#fff;
}

.view-btn{
    display:inline-block;
    padding:10px 18px;
    background:#ff1e2d;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.view-btn:hover{
    background:#fff;
    color:#ff1e2d;
}
/* Paid Hero Accent */
.paid-hero h1 {
    color: #ffcc00;
    text-shadow: 0 0 25px rgba(255, 204, 0, 0.7);
}

/* Paid Cards Accent */
.mod-card.paid:hover {
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.5);
}

/* Paid Button */
.paid-btn {
    background: #ffcc00;
    color: #000;
}

.paid-btn:hover {
    background: #fff;
    color: #000;
}
/* PREMIUM PAGE */

.premium-page {
    background: linear-gradient(135deg, #0b0b0b, #1a1400);
}

.premium-detail {
    padding: 160px 10% 100px;
    max-width: 950px;
    margin: auto;
}

.premium-title {
    font-size: 42px;
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
}

.premium-video {
    box-shadow: 0 25px 60px rgba(255, 204, 0, 0.25);
    border-radius: 18px;
    overflow: hidden;
    margin: 40px 0;
}

.buy-box {
    text-align: center;
    margin: 50px 0;
}

.premium-btn {
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    color: #000;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.premium-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
}

.premium-page .mod-description h2 {
    color: #ffcc00;
}
/* SOUND MODAL */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: #111;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    border-radius: 16px;
    position: relative;
    animation: fadeIn 0.4s ease;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #ff1e2d;
}

.modal-info {
    margin-top: 30px;
}

.modal-info code {
    display: block;
    background: #000;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0 20px;
    color: #ff1e2d;
}
/* COMING SOON SECTION */

.coming-section {
    padding: 160px 10%;
    text-align: center;
}

.coming-title {
    font-size: 48px;
    color: #8b5cf6;
    text-shadow: 0 0 25px rgba(139,92,246,0.7);
}

.coming-sub {
    color: #aaa;
    margin-bottom: 60px;
}

.coming-box {
    background: #111;
    padding: 60px;
    border-radius: 18px;
    max-width: 700px;
    margin: auto;
    border: 1px solid #222;
    box-shadow: 0 0 40px rgba(139,92,246,0.3);
    animation: fadeIn 1s ease;
}

.coming-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #8b5cf6;
    letter-spacing: 4px;
}
