/* ===== CYBERPUNK PURPLE THEME ===== */
:root {
    --primary: #9d4edd;
    --primary-dark: #5a189a;
    --primary-light: #c77dff;
    --secondary: #4cc9f0;
    --accent: #f725a7;
    --dark: #0a0a14;
    --dark-light: #1a1a2e;
    --text: #e0e0ff;
    --text-light: #b8b8ff;
    --text-lighter: #9d9dff;
    --cyber-green: #00ff9d;
    --robux: #ff4655;
    --usd: #4cc9f0;
    --kofi: #ff5e5e;
    --glow: 0 0 10px, 0 0 20px, 0 0 30px;
    --grid-color: rgba(157, 78, 221, 0.05);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 201, 240, 0.05) 0%, transparent 50%);
    min-height: 100vh;
}

/* ===== CYBERPUNK EFFECTS ===== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(90, 24, 154, 0.05) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
    animation: scan 8s linear infinite;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(157, 78, 221, 0.02) 50%),
        linear-gradient(transparent 50%, rgba(76, 201, 240, 0.02) 50%);
    background-size: 3px 3px, 100% 2px;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.3;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 9996;
    opacity: 0.2;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .section-title, .nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: var(--glow) var(--primary);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    text-shadow: 0 0 15px var(--primary);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ===== GLITCH TEXT EFFECT ===== */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--accent);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: var(--secondary);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    10% { clip-path: inset(20% 0 30% 0); transform: translate(-5px, 5px); }
    20% { clip-path: inset(80% 0 10% 0); transform: translate(5px, -5px); }
    30% { clip-path: inset(10% 0 60% 0); transform: translate(-5px, 5px); }
    40% { clip-path: inset(50% 0 30% 0); transform: translate(5px, -5px); }
    50% { clip-path: inset(30% 0 60% 0); transform: translate(-5px, 5px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(5px, -5px); }
    70% { clip-path: inset(60% 0 20% 0); transform: translate(-5px, 5px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(5px, -5px); }
    90% { clip-path: inset(40% 0 40% 0); transform: translate(-5px, 5px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    10% { clip-path: inset(30% 0 20% 0); transform: translate(5px, -5px); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(-5px, 5px); }
    30% { clip-path: inset(20% 0 50% 0); transform: translate(5px, -5px); }
    40% { clip-path: inset(70% 0 20% 0); transform: translate(-5px, 5px); }
    50% { clip-path: inset(40% 0 40% 0); transform: translate(5px, -5px); }
    60% { clip-path: inset(10% 0 70% 0); transform: translate(-5px, 5px); }
    70% { clip-path: inset(50% 0 30% 0); transform: translate(5px, -5px); }
    80% { clip-path: inset(30% 0 60% 0); transform: translate(-5px, 5px); }
    90% { clip-path: inset(80% 0 10% 0); transform: translate(5px, -5px); }
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* ===== NAVIGATION ===== */
.cyber-nav {
    background: rgba(10, 2, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 5px 30px rgba(157, 78, 221, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.logo-glow {
    color: var(--primary);
    text-shadow: var(--glow) var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
    background: rgba(157, 78, 221, 0.1);
}

.cta-button {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.4);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover .cta-glow {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.6);
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 8rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ===== HERO CIRCLE IMAGE (Replaced badge) ===== */
.hero-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.circle-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5), 0 0 60px rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    background: rgba(42, 10, 80, 0.6);
    padding: 3px;
}

.circle-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.8);
    border-color: var(--primary-light);
}

.circle-caption {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: monospace;
    text-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.circle-caption::before,
.circle-caption::after {
    content: '"';
    color: var(--primary);
    font-size: 1rem;
    font-weight: bold;
}

.circle-caption::before {
    margin-right: 4px;
}

.circle-caption::after {
    margin-left: 4px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--text-light);
}

.hero-bio {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: left;
    padding: 2.5rem;
    background: rgba(30, 10, 50, 0.7);
    border-radius: 15px;
    border: 1px solid var(--primary-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.2);
}

.hero-bio p {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.terminal-text {
    color: var(--cyber-green);
    font-weight: 600;
    font-family: monospace;
}

.highlight {
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary);
}

.hero-note {
    background: rgba(247, 37, 133, 0.2);
    border: 1px solid var(--accent);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: var(--accent);
    font-weight: 600;
}

.hero-note a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}

.hero-note a:hover {
    color: var(--accent);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(20, 5, 40, 0.8);
    border: 1px solid var(--primary-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.cyber-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cyber-btn:hover .btn-glow {
    left: 100%;
}

.cyber-btn.primary {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.cyber-btn.secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.cyber-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.6);
}

.cyber-btn.primary:hover {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
}

.cyber-btn.secondary:hover {
    background: rgba(157, 78, 221, 0.1);
}

.hero-neon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 0;
}

.neon-line {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: neonSlide 3s infinite linear;
}

.neon-line:nth-child(2) {
    animation-delay: 1s;
    bottom: 30px;
    opacity: 0.7;
}

.neon-line:nth-child(3) {
    animation-delay: 2s;
    bottom: 60px;
    opacity: 0.5;
}

@keyframes neonSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

.warning-box {
    background: rgba(247, 37, 133, 0.2);
    border: 1px solid var(--accent);
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.warning-box a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}

.warning-box a:hover {
    color: var(--accent);
}

/* ===== PORTFOLIO ===== */
.portfolio {
    background: rgba(10, 2, 20, 0.5);
    border-top: 2px solid var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    perspective: 1000px;
}

.portfolio-card {
    background: rgba(30, 10, 50, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--primary-dark);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(157, 78, 221, 0.4);
}

.card-category {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.portfolio-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 2, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    padding: 2rem;
    text-align: center;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay-content h3 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.card-overlay-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.view-full {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
}

.view-full:hover {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: scale(1.05);
}

.card-footer {
    padding: 1.2rem 1.5rem;
    background: rgba(20, 5, 40, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.card-type {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-date {
    color: var(--text-lighter);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== PRICING ===== */
.pricing {
    background: linear-gradient(135deg, rgba(42, 10, 80, 0.8), rgba(30, 10, 50, 0.8));
    border-top: 2px solid var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-list {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.pricing-category {
    margin-bottom: 3rem;
    background: rgba(20, 5, 40, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
    transition: transform 0.3s;
}

.pricing-category:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.3);
}

.pricing-category h3 {
    color: var(--primary-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
}

.pricing-category h3 i {
    color: var(--secondary);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(157, 78, 221, 0.1);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    border-radius: 8px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(224, 224, 255, 0.3);
}

.service-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.price-robux {
    color: var(--usd); /* Changed from var(--robux) to blue */
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3); /* Blue shadow */
}

.price-separator {
    color: var(--cyber-green); /* Changed to green */
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3); /* Green shadow */
}

.price-usd {
    color: var(--usd); /* Already blue, keeping this */
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3); /* Blue shadow */
}

/* Payment Methods */
.payment-methods {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 5, 40, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
    position: relative;
    z-index: 1;
}

.payment-methods h3 {
    color: var(--primary-light);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.method-item {
    background: rgba(10, 2, 20, 0.8);
    border: 1px solid var(--primary-dark);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    text-align: center;
}

.method-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.method-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon.robux {
    color: var(--robux);
    text-shadow: 0 0 20px rgba(98, 70, 255, 0.5);
}

.method-icon.kofi {
    color: var(--kofi);
    text-shadow: 0 0 20px rgba(98, 70, 255, 0.5);
}

.method-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.method-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.payment-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.note {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary);
    font-size: 1rem;
}

.note i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===== REVIEWS ===== */
.reviews {
    background: rgba(10, 2, 20, 0.6);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(76, 201, 240, 0.05), transparent 50%);
    z-index: 0;
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(30, 10, 50, 0.9);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--primary-dark);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.3);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-name {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px var(--primary);
}

.client-date {
    color: var(--secondary);
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

.review-content {
    position: relative;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.meta-label {
    font-weight: 600;
    color: var(--secondary);
    min-width: 80px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.meta-value {
    color: var(--text);
    font-weight: 500;
    font-size: 1.1rem;
}

.meta-value.rating {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(10, 2, 20, 0.6);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    position: relative;
    font-size: 1.1rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 15px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
    font-weight: 900;
}

/* ===== ORDER FORM ===== */
.order {
    background: linear-gradient(135deg, rgba(42, 10, 80, 0.9), rgba(30, 10, 50, 0.9));
    border-top: 2px solid var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
    position: relative;
}

.order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 Q25,40 50,50 T100,50 L100,100 L0,100 Z" fill="%239d4edd" opacity="0.05"/></svg>');
    background-size: cover;
    z-index: 0;
}

.order-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.order-form {
    background: rgba(20, 5, 40, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--primary);
}

.form-group i {
    color: var(--secondary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(10, 2, 20, 0.9);
    border: 1px solid var(--primary-dark);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.3);
    background: rgba(10, 2, 20, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.extras-grid {
    display: grid;
    gap: 1rem;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(10, 2, 20, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s;
}

.extra-option:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary);
}

.extra-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.extra-text {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
}

.price-display {
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--primary);
    text-align: center;
    justify-content: center;
}

.price-display i {
    color: var(--secondary);
    font-size: 1.5rem;
}

#totalPrice {
    color: var(--accent);
    font-weight: 900;
    text-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.6);
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
}

.form-note {
    background: rgba(76, 201, 240, 0.15);
    border: 1px solid rgba(76, 201, 240, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

.form-note i {
    color: var(--secondary);
    margin-top: 0.3rem;
    font-size: 1.3rem;
}

.form-note p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(20, 5, 40, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.info-card h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
    text-shadow: 0 0 10px var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-card h3 i {
    color: var(--secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(10, 2, 20, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary);
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    width: 30px;
}

.contact-item strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-item span,
.contact-item a {
    color: var(--text-light);
    font-size: 1rem;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-light);
}

.copy-text {
    cursor: pointer;
    transition: color 0.3s;
}

.copy-text:hover {
    color: var(--primary-light);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.step-content h4 {
    color: var(--text);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.turnaround-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(10, 2, 20, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s;
}

.time-item:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary);
}

.time-item i {
    color: var(--secondary);
    font-size: 1.5rem;
    width: 30px;
}

.time-item strong {
    color: var(--text);
    font-size: 1rem;
}

.time-item div {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== TERMS OF SERVICE ===== */
.tos {
    background: rgba(10, 2, 20, 0.7);
    position: relative;
}

.tos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.tos-card {
    background: rgba(30, 10, 50, 0.9);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--primary-dark);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tos-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.3);
}

.tos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.1), transparent);
    transition: left 0.5s;
}

.tos-card:hover::before {
    left: 100%;
}

.tos-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--primary);
}

.tos-card h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--primary);
}

.tos-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.tos-note {
    max-width: 900px;
    margin: 4rem auto 0;
    background: rgba(247, 37, 133, 0.15);
    border: 1px solid var(--accent);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(247, 37, 133, 0.3);
}

.tos-note i {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.tos-note p {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent);
}

/* ===== FOOTER ===== */
.cyber-footer {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 2px solid var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.social-link i {
    font-size: 1.3rem;
    width: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.link-column a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s;
    font-size: 1rem;
}

.link-column a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.link-column a i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-copyright i {
    color: var(--accent);
    margin: 0 0.3rem;
}

.footer-status {
    display: flex;
    gap: 2rem;
}

.status-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.status-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.status-value {
    color: var(--cyber-green);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px var(--cyber-green);
}

.status-value.open {
    color: var(--cyber-green);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 2, 20, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(42, 10, 80, 0.98), rgba(30, 10, 50, 0.98));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 30px 80px rgba(157, 78, 221, 0.5);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.modal-header h2 {
    color: var(--primary-light);
    font-size: 2rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-header h2 i {
    color: var(--cyber-green);
    text-shadow: 0 0 20px var(--cyber-green);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
    border-radius: 4px;
}

.modal-close:hover {
    color: var(--accent);
    background: rgba(247, 37, 133, 0.1);
}

.modal-body {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--cyber-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--cyber-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal-body h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.order-summary {
    background: rgba(10, 2, 20, 0.6);
    border: 1px solid var(--primary-dark);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.modal-btn {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
    margin-top: 1rem;
}

.modal-btn:hover {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    .hero-title { font-size: 4rem; }
    .section-title { font-size: 2.8rem; }
    .order-container { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 2, 20, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 2px solid var(--primary-dark);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    h1 { font-size: 2.8rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.8rem; }
    .section-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .hero-cta { flex-direction: column; gap: 1rem; }
    .portfolio-grid, .reviews-grid, .tos-grid { grid-template-columns: 1fr; }
    .methods-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 6rem 1rem 4rem; }
    section { padding: 4rem 1rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .section-title { font-size: 2rem; }
    .cyber-btn, .cta-button { padding: 1rem 1.5rem; font-size: 1rem; }
    .modal-content { padding: 2rem; }
}
.robux i {
    background: linear-gradient(135deg, #863bff, #4cf0cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kofi i {
    background: linear-gradient(135deg, #7dfff4, #8306f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
