@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    color: white;
    margin: 0;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 999;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    cursor: pointer;
}

.nav-links a {
    color: #b8b8c0;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-right .discord-btn {
    background: #5865f2;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-right .discord-btn:hover {
    background: #4752c4;
}

.role-badge {
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* PERMISSION SYSTEM */
.permission-indicator {
    margin-top: 10px;
    text-align: center;
}

.permission-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #6c757d;
    color: white;
    transition: all 0.3s ease;
}

.permission-badge.vip {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.permission-badge.premium {
    background: linear-gradient(45deg, #9c27b0, #e91e63);
    color: white;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.permission-badge.admin {
    background: linear-gradient(45deg, #f44336, #ff9800);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.permission-indicator.granted .permission-badge {
    animation: glow 2s ease-in-out infinite alternate;
}

.permission-indicator.denied {
    opacity: 0.5;
    filter: grayscale(100%);
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px currentColor;
    }
    to {
        box-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

/* MEMBER SECTION */
.member-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 2rem 0;
}

.member-section h2 {
    text-align: center;
    color: #00ff88;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.member-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.member-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s;
}

.member-card:hover::before {
    left: 100%;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.member-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.member-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.user-status {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.user-status .status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.user-status .status-label {
    color: #aaa;
    font-size: 0.9rem;
}

.user-status .status-value {
    color: #00ff88;
    font-weight: bold;
}

/* ACCESS MESSAGES */
.access-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.access-message.success {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.access-message.warning {
    background: linear-gradient(45deg, #FF9800, #f57c00);
}

.access-message.error {
    background: linear-gradient(45deg, #f44336, #d32f2f);
}

.access-message.info {
    background: linear-gradient(45deg, #2196F3, #1976d2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .member-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .member-card {
        padding: 1.5rem;
    }
    
    .access-message {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}



/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    /* top: -200px; */
    gap: 40px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.scroll-arrow i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.scroll-arrow:hover i {
    color: white;
}

.scroll-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, #a0a0a0, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    font-family: 'Inter', sans-serif;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #b8b8c0;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #3a3a3a, #4a4a4a);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #4a4a4a, #5a5a5a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 50, 50, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
    z-index: -1;
}

@keyframes shimmer {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.btn-secondary {
    background-color: rgba(80, 80, 80, 0.1);
    color: white;
    border: 1px solid rgba(80, 80, 80, 0.3);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background-color: rgba(80, 80, 80, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 80, 80, 0.2);
}

.hero-image {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 80, 80, 0.3) 0%, rgba(60, 60, 60, 0.2) 50%, rgba(80, 80, 80, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite alternate;
}

.developer-img {
    max-height: 600px;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* HIGHLIGHT BAR */
.highlight-bar {
    background: linear-gradient(90deg, #2a2a2a, #3a3a3a, #2a2a2a);
    background-size: 200% 100%;
    animation: gradientMove 5s linear infinite;
    padding: 16px 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50% }
    100% { background-position: 200% 50% }
}

.highlight-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.highlight-bar i {
    color: #fff;
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
    padding: 20px 40px 40px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
}

.section-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a4a4a, #6a6a6a, #4a4a4a);
    margin: 0 auto 40px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    border-radius: 10px;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(80, 80, 80, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-icon i {
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Specific colors for Font Awesome icons */
.feature-icon .fa-code {
    color: #61dafb;
}

.feature-icon .fa-globe {
    color: #47c747;
}

.feature-icon .fa-key {
    color: #f1c40f;
}

.feature-icon .fa-database {
    color: #f39c12;
}

.feature-icon .fa-gamepad {
    color: #e74c3c;
}

.feature-icon .fa-shopping-cart {
    color: #2ecc71;
}

.feature-icon .fa-users {
    color: #9b59b6;
}

.feature-icon .fa-gift {
    color: #f1c40f;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8c0;
    flex-grow: 1;
}

/* SHOP SECTION */
.shop-section {
    padding: 40px 40px;
    text-align: center;
}

.shop-section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
}

.shop-card {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 1px solid #444;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.shop-card:hover::before {
    left: 100%;
}

.shop-price {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: linear-gradient(90deg, #3a3a3a, #4a4a4a);
    color: #ffffff;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* DISCORD JOIN SECTION */
.discord-join {
    padding: 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.discord-join p {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.discord-text {
    color: #61dafb;
}

/* FOOTER */
.footer, footer {
    color: #666;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer p, footer p {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bar {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar span {
    color: #888;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* FREE SCRIPTS PAGE */
.free-scripts-main {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-scripts-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    width: 100%;
}

.free-scripts-main h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff, #a0a0a0, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    font-family: 'Inter', sans-serif;
    text-align: center;
    letter-spacing: -1px;
}

.section-regulamintext {
    color: rgba(255,255,255,0.85);
    font-size: 1.3rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.3px;
}

.section-regulamintextmain {
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.3px;  
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
    padding: 0 20px;
    justify-items: center;
}

.video-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15), 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 380px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}

.video-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 8px 25px rgba(0,0,0,0.15);
}

.video-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-title {
    padding: 24px 20px;
    margin: 0;
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile styles for video pages */
@media (max-width: 992px) {
    .free-scripts-main h1 {
        font-size: 3rem;
    }
    
    .section-description {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .free-scripts-main {
        padding: 80px 0 50px;
    }
    
    .free-scripts-main .container {
        padding: 0 15px;
    }
    
    .free-scripts-main h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }
    
    .section-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
        padding: 0 5px;
    }
    
    .video-card {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .video-title {
        padding: 20px 15px;
        font-size: 1.1rem;
        min-height: 70px;
    }
}

@media (max-width: 576px) {
    .free-scripts-main {
        padding: 70px 0 40px;
    }
    
    .free-scripts-main .container {
        padding: 0 10px;
    }
    
    .free-scripts-main h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }
    
    .section-underline {
        width: 50px;
        margin: 0 auto 25px;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .video-grid {
        gap: 15px;
        margin-top: 30px;
        padding: 0;
    }
    
    .video-card {
        border-radius: 12px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-title {
        padding: 15px 12px;
        font-size: 1rem;
        min-height: 60px;
        line-height: 1.4;
    }
}

.fivem-text {
    color: #fcb32d;
}

.discord-btn {
    background-color: #5865f2;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 120, 251, 0.4);
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
    }
    
    .hero {
        flex-direction: column;
        padding: 100px 40px 0;
        text-align: center;
        min-height: calc(100vh - 70px - 52px);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .developer-img {
        max-height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .discord-join {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .free-scripts-main {
        padding: 100px 0 60px;
    }
    
    .free-scripts-main .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
        height: 55px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .nav-right .discord-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .why-choose-us h2, .shop-section h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .discord-join p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0 10px;
        height: 50px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo img {
        height: 24px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .nav-right .discord-btn {
        padding: 5px 10px;
        font-size: 12px;
        gap: 4px;
    }
    
    .hero {
        padding: 80px 20px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .why-choose-us, .shop-section {
        padding: 30px 20px;
    }
    
    .why-choose-us h2, .shop-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-underline {
        width: 60px;
        margin: 0 auto 30px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .discord-join {
        padding: 25px 15px;
    }
    
    .discord-join p {
        font-size: 14px;
    }
    
    .footer {
        padding: 15px 0;
    }
}

/* NOTIFICATION STYLES */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.notification-text strong {
    color: #ffffff;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #ffffff;
}

.section-descriptionpatreon {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.section-descriptionpatreon .price-highlight {
    color: #00ff41;
    text-shadow: 0 0 1px #00ff41, 0 0 2px #00ff41, 0 0 3px #00ff41;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        color: #00ff41;
        text-shadow: 0 0 1px #00ff41, 0 0 2px #00ff41, 0 0 3px #00ff41;
    }
    to {
        color: #39ff14;
        text-shadow: 0 0 1px #39ff14, 0 0 3px #39ff14, 0 0 4px #39ff14;
    }
}

.section-description-new {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section-description-scripts {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.section-description-scripts {
    color: #cc00ff;
    text-shadow: 0 0 1px #cc00ff, 0 0 2px #cc00ff, 0 0 3px #cc00ff;
    animation: neonGlows 2s ease-in-out infinite alternate;
}

@keyframes neonGlows {
    from {
        color: #cc00ff;
        text-shadow: 0 0 1px #cc00ff, 0 0 2px #cc00ff, 0 0 3px #cc00ff;
    }
    to {
        color: #ff14c4;
        text-shadow: 0 0 1px #ff14c4, 0 0 3px #ff14c4, 0 0 4px #ff14c4;
    }
}

.zlote {
    color: rgb(255, 217, 0);
}