/* Ravage Tweaks Style */

:root {
    --primary-color: #D90057;
    --primary-rgb: 217, 0, 87;
    --bg-dark: #0c0c0c;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

#app {
    width: 100%;
    min-height: 100vh;
}

/* Navigation */
/* Override any Bootstrap navbar styles when using modern nav */
nav.nav-modern,
.nav-modern {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(12, 12, 12, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

/* Ensure Bootstrap navbar doesn't interfere */
.nav-modern.navbar,
nav.nav-modern.navbar {
    display: block !important;
}

/* Hide old Bootstrap navbar styles when modern nav is present */
body:has(.nav-modern) .navbar:not(.nav-modern),
body:has(.nav-modern) nav.navbar:not(.nav-modern) {
    display: none !important;
}

/* Override Bootstrap navbar base styles */
.nav-modern.navbar-expand-lg,
.nav-modern.navbar-dark,
.nav-modern.bg-dark {
    background: rgba(12, 12, 12, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Force override Bootstrap collapse styles */
.nav-modern .navbar-collapse,
.nav-modern .collapse {
    display: flex !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
}

.nav-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.nav-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-logo img {
    height: 30px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
}

.nav-logo-text {
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-logo-text .tweaks {
    color: var(--text-primary) !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
}

.nav-link-modern,
.nav-menu .nav-link-modern,
.nav-modern .nav-link-modern {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    background: none !important;
    border: none !important;
    line-height: normal !important;
}

.nav-link-modern:hover {
    color: var(--text-primary) !important;
    background: none !important;
}

.nav-link-modern.active {
    color: var(--primary-color) !important;
    background: none !important;
}

.nav-link-modern.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 0, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-profile-btn:hover::before {
    left: 100%;
}

.nav-profile-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(217, 0, 87, 0.3), 0 0 0 1px rgba(217, 0, 87, 0.2);
}

.nav-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(217, 0, 87, 0.2);
}

.nav-profile-btn:hover .nav-profile-avatar {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 4px 12px rgba(217, 0, 87, 0.4);
}

.nav-profile-avatar::before {
    content: '/>';
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    position: absolute;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-profile-btn:hover .nav-profile-avatar::before {
    transform: scale(1.1);
}

.nav-profile-avatar:has(img)::before {
    display: none;
}

.nav-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-profile-btn:hover .nav-profile-avatar img {
    transform: scale(1.1);
}

.nav-profile-avatar span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-profile-btn:hover .nav-profile-avatar span {
    transform: scale(1.1);
}

.nav-profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    flex: 1;
    transition: transform 0.3s ease;
}

.nav-profile-btn:hover .nav-profile-info {
    transform: translateX(2px);
}

.nav-profile-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.nav-profile-btn:hover .nav-profile-name {
    color: var(--primary-color);
}

.nav-profile-badge {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-profile-caret {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    display: inline-block;
}

.nav-profile-btn:hover .nav-profile-caret {
    transform: translateY(-3px) rotate(180deg);
    color: var(--primary-color);
}

.nav-login-btn,
#navAuthSection .nav-login-btn {
    display: flex !important;
    align-items: center !important;
    padding: 0.5rem 1.25rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    margin: 0 !important;
}

.nav-login-btn:hover,
#navAuthSection .nav-login-btn:hover {
    background: rgba(var(--primary-rgb), 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4) !important;
    color: white !important;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 40px;
    width: auto;
}

.hero-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-logo-text .ravage {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-logo-text .tweaks {
    color: var(--text-primary);
    font-weight: 300;
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-heading .line1 {
    display: block;
}

.hero-heading .line2 {
    display: block;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
    color: white;
}

.btn-primary-modern img {
    width: 20px;
    height: 20px;
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

/* Trusted Section */
.trusted-section {
    padding: 80px 2rem;
    background: var(--bg-darker);
    position: relative;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trusted-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.trusted-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trusted-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-user {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.testimonial-verified {
    width: 18px;
    height: 18px;
}

.testimonial-handle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-content {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.testimonial-link {
    color: var(--primary-color);
    text-decoration: none;
}

.testimonial-link:hover {
    text-decoration: underline;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Brands Section */
.brands-section {
    padding: 60px 2rem;
    background: var(--bg-dark);
    overflow: hidden;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brands-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.brands-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-scroll {
    display: flex;
    gap: 3rem;
    width: fit-content;
    animation: scrollBrands 30s linear infinite;
}

.brands-scroll:hover {
    animation-play-state: paused;
}

.brand-logo {
    height: 60px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.brand-logo[src*="cod.png"] {
    height: 80px;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* YouTube Section */
.youtube-section {
    padding: 80px 2rem;
    background: var(--bg-darker);
}

.youtube-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.youtube-header {
    margin-bottom: 2rem;
}

.youtube-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.youtube-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.youtube-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.youtube-link:hover {
    gap: 1rem;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-dark);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 2rem;
    background: var(--bg-dark);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.section-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
}

.feature-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-desc-modern {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Precision Section */
.precision-section {
    padding: 80px 2rem;
    background: var(--bg-darker);
}

.precision-container {
    max-width: 1400px;
    margin: 0 auto;
}

.precision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.precision-stat {
    text-align: center;
}

.precision-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.precision-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.precision-sublabel {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-section {
    padding: 80px 2rem;
    background: var(--bg-dark);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
}

.process-image {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.process-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

.process-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 2rem;
    background: var(--bg-darker);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question.active {
    color: var(--primary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-top: 1rem;
}

.faq-discord {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.faq-discord-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.faq-discord-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-discord-link:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    color: white;
}

/* Footer */
.footer-modern {
    padding: 60px 2rem 30px;
    background: rgba(var(--primary-rgb), 0.25);
    border-top: 10px solid var(--primary-color);
    position: relative;
    box-shadow: 0 -10px 50px rgba(var(--primary-rgb), 0.6), inset 0 0 100px rgba(var(--primary-rgb), 0.15);
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-color);
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-logo-text .ravage {
    color: var(--primary-color);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
    font-size: 1.2rem;
}

.footer-logo-text .tweaks {
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
    transform: translateX(3px);
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.footer-cta-btn::before {
    content: '';
    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 ease;
}

.footer-cta-btn:hover::before {
    left: 100%;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
    color: white;
    background: rgba(var(--primary-rgb), 0.95);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 8px solid var(--primary-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 -6px 30px rgba(var(--primary-rgb), 0.6);
    background: rgba(var(--primary-rgb), 0.2);
    margin-top: 2rem;
    padding: 2rem 1rem 1rem;
    border-radius: 12px 12px 0 0;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary-color);
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .youtube-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .process-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-image {
        height: 300px;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}

/* Custom Notification System */
.ravage-notify {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    min-width: 320px;
    max-width: 500px;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--primary-rgb), 0.3);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: block !important;
    visibility: visible !important;
}

.ravage-notify-show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ravage-notify-hide {
    opacity: 0;
    transform: translateX(400px);
}

.ravage-notify-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
}

.ravage-notify-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ravage-notify-icon svg {
    width: 100%;
    height: 100%;
}

.ravage-notify-message {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.ravage-notify-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 0;
    margin-top: 2px;
}

.ravage-notify-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.ravage-notify-close svg {
    width: 16px;
    height: 16px;
}

/* Notification Types */
.ravage-notify-info {
    border-left-color: #3b82f6;
}

.ravage-notify-info .ravage-notify-icon {
    color: #3b82f6;
}

.ravage-notify-success {
    border-left-color: #10b981;
}

.ravage-notify-success .ravage-notify-icon {
    color: #10b981;
}

.ravage-notify-error {
    border-left-color: #ef4444;
}

.ravage-notify-error .ravage-notify-icon {
    color: #ef4444;
}

.ravage-notify-warning {
    border-left-color: #f59e0b;
}

.ravage-notify-warning .ravage-notify-icon {
    color: #f59e0b;
}

/* Use primary color for info type (default) */
.ravage-notify-info {
    border-left-color: var(--primary-color);
}

.ravage-notify-info .ravage-notify-icon {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .ravage-notify {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .ravage-notify-show {
        transform: translateY(0);
    }
    
    .ravage-notify-hide {
        transform: translateY(-100px);
    }
}

