/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(10px);
    will-change: background-color, border-color;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.language-dropdown:hover .language-btn i:last-child {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.language-dropdown:hover .language-menu,
.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 0.9rem;
}

.language-option:hover {
    background: rgba(102, 126, 234, 0.2);
    color: white;
}

.language-option.active {
    background: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.language-option .flag {
    font-size: 1.2rem;
}

.language-option span:last-child {
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Title Animation Styles */
.static-title {
    display: inline-block;
    opacity: 1;
    animation: none;
    color: #C084FC;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

.animated-text {
    display: inline-block;
    opacity: 0;
    animation: fadeInTypewriter 2s ease-in-out 0.5s forwards;
    color: white;
}

@keyframes fadeInTypewriter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(-3%, -35%); }
    90% { transform: translate(10%, 5%); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.5s;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    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;
}

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

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="socialDots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(102, 126, 234, 0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23socialDots)"/></svg>');
    opacity: 0.4;
    animation: backgroundMove 20s linear infinite;
}

.social-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: backgroundRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(0) translateY(-10px); }
    75% { transform: translateX(10px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.social-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #2a2a2a;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.social-card > * {
    position: relative;
    z-index: 2;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.social-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.social-content p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.social-link {
    color: #667eea;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-card:hover .social-link i {
    transform: translateX(5px);
}

/* Social Card Colors */
.discord {
    background: #2a2a2a;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.discord::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(71, 82, 196, 0.1) 100%);
}

.discord .social-icon {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
}

.reddit {
    background: #2a2a2a;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.reddit::before {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.reddit .social-icon {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
}

.tiktok {
    background: #2a2a2a;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.tiktok::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(51, 51, 51, 0.1) 100%);
}

.tiktok .social-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.instagram {
    background: #2a2a2a;
    border: 1px solid rgba(228, 64, 95, 0.3);
}

.instagram::before {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1) 0%, rgba(253, 29, 29, 0.1) 50%, rgba(252, 176, 69, 0.1) 100%);
}

.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f 0%, #fd1d1d 50%, #fcb045 100%);
}

.youtube {
    background: #2a2a2a;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.youtube::before {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.1) 100%);
}

.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.telegram {
    background: #2a2a2a;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.telegram::before {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 102, 153, 0.1) 100%);
}

.telegram .social-icon {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(102, 126, 234, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 10px;
        margin: 0 1rem;
        transition: background-color 0.2s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(102, 126, 234, 0.2);
        color: #667eea;
    }
    
    .language-switcher {
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .language-btn {
        background: rgba(102, 126, 234, 0.2);
        border-color: rgba(102, 126, 234, 0.3);
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .language-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(102, 126, 234, 0.1);
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(102, 126, 234, 0.2);
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .language-option {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .social-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 120px;
        min-height: calc(100vh - 40px);
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .social-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .social-card h3 {
        font-size: 1.1rem;
    }
    
    .social-card p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .guide-ad-text h2 {
        font-size: 1.8rem;
    }
    
    .guide-ad-text p {
        font-size: 0.95rem;
    }
    
    .guide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .benefit-card {
        padding: 1.2rem;
    }
    
    .social-card {
        padding: 1rem;
    }
    
    .guide-ad-text h2 {
        font-size: 1.6rem;
    }
    
    .guide-icon {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.faq-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.faq-hero .hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category h2 i {
    color: #667eea;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #2a2a2a;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.1);
}

.faq-question h3 {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.faq-answer a {
    color: #667eea;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-btn.discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
}

.contact-btn.reddit {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
}

/* Quality Check Page Styles */
.qc-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.qc-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.qc-hero .hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.qc-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qc-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.qc-section {
    margin-bottom: 4rem;
}

.qc-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.benefit-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #e0e0e0;
    font-weight: 500;
}

.qc-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #b0b0b0;
}

.qc-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.checklist-category {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.checklist-category h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checklist-category h3 i {
    color: #667eea;
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-items li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items li i {
    color: #667eea;
    font-size: 0.9rem;
}

.red-flags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.red-flag-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.red-flag-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.red-flag-item h4 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.red-flag-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.qc-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-content h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.tip-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

.agent-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
}

.service-item h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    color: #b0b0b0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

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

.community-help {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.community-help h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.community-help p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.help-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.help-btn.discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
}

.help-btn.reddit {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
}

/* Hauls Page Styles */
.hauls-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.hauls-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.hauls-hero .hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hauls-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hauls-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.hauls-section {
    margin-bottom: 4rem;
}

.hauls-section h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hauls-section h2 i {
    color: #667eea;
}

.hauls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.haul-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.haul-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.haul-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.haul-image {
    position: relative;
    height: 200px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.haul-placeholder {
    text-align: center;
    color: #b0b0b0;
}

.haul-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.haul-placeholder.small {
    font-size: 1.5rem;
}

.haul-placeholder.small i {
    font-size: 2rem;
}

.haul-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.haul-content {
    padding: 2rem;
}

.haul-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.haul-header h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 600;
}

.haul-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #feca57;
    font-size: 0.9rem;
}

.haul-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.haul-items {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.item-tag, .price-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-tag {
    background: rgba(118, 75, 162, 0.2);
    color: #764ba2;
}

.haul-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.haul-author, .haul-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-hauls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.recent-haul-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.recent-haul-item:hover {
    background: #2a2a2a;
    transform: translateX(5px);
}

.recent-haul-image {
    width: 80px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recent-haul-content h4 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.recent-haul-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.recent-haul-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}

.recent-haul-meta span {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.category-count {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-haul-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #667eea;
}

.share-haul-card h2 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.share-haul-card p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.share-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.share-btn.discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
}

.share-btn.reddit {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
}

.share-btn.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.share-tips h4 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.share-tips ul {
    list-style: none;
    padding: 0;
}

.share-tips li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.share-tips li i {
    color: #667eea;
}

.community-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.community-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
}

/* Privacy & Terms Page Styles */
.privacy-hero, .terms-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.privacy-hero .hero-title, .terms-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.privacy-hero .hero-description, .terms-hero .hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.privacy-badges, .terms-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-content, .terms-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.privacy-sections, .terms-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.privacy-section, .terms-section {
    width: 100%;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #667eea;
    font-weight: 500;
}

.privacy-section h2, .terms-section h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-section h2 i, .terms-section h2 i {
    color: #667eea;
}

.privacy-section h3, .terms-section h3 {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin: 2rem 0 1rem;
}

.privacy-section p, .terms-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-list, .terms-list {
    list-style: none;
    padding: 0;
}

.privacy-list li, .terms-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.privacy-list li:last-child, .terms-list li:last-child {
    border-bottom: none;
}

.privacy-list li::before, .terms-list li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
}

.usage-grid, .rights-grid, .responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usage-item, .right-item, .responsibility-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.usage-icon, .right-item h3, .responsibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.right-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.usage-content h3, .responsibility-content h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.usage-content p, .right-item p, .responsibility-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

.sharing-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.scenario-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.scenario-item h3 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.scenario-item h3 i {
    color: #667eea;
}

.scenario-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.security-measures, .disclaimer-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item, .disclaimer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.security-item i, .disclaimer-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.security-item span, .disclaimer-item span {
    color: #e0e0e0;
    font-weight: 500;
}

.security-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-top: 2rem;
}

.security-note i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.security-note p {
    color: #b0b0b0;
    margin: 0;
}

.contact-rights {
    background: rgba(102, 126, 234, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin-top: 2rem;
}

.contact-rights p {
    color: #b0b0b0;
    margin: 0;
}

.prohibited-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.prohibited-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.prohibited-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.prohibited-item h3 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.prohibited-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-method i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.contact-method h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #b0b0b0;
    margin: 0;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .faq-hero .hero-title, .qc-hero .hero-title, .hauls-hero .hero-title, 
    .privacy-hero .hero-title, .terms-hero .hero-title {
        font-size: 2rem;
    }
    
    .faq-hero .hero-description, .qc-hero .hero-description, .hauls-hero .hero-description,
    .privacy-hero .hero-description, .terms-hero .hero-description {
        font-size: 1rem;
    }
    
    .faq-category h2, .privacy-section h2, .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .qc-timeline {
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .qc-checklist, .qc-tips, .agent-services {
        grid-template-columns: 1fr;
    }
    
    .hauls-grid, .recent-hauls, .category-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options, .help-options, .share-options {
        flex-direction: column;
        align-items: center;
    }
    
    .usage-grid, .rights-grid, .responsibilities-grid {
        grid-template-columns: 1fr;
    }
    
    .sharing-scenarios, .prohibited-activities {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-question, .haul-content, .tip-item, .usage-item, .responsibility-item {
        padding: 1rem;
    }
    
    .timeline-item, .checklist-category, .service-item, .category-card {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-haul-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-haul-image {
        width: 100%;
        height: 120px;
    }
}

/* Enhanced Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 20px;
    }
    25% {
        border-radius: 30px 10px 30px 10px;
    }
    50% {
        border-radius: 10px 30px 10px 30px;
    }
    75% {
        border-radius: 30px 20px 10px 30px;
    }
}

/* Enhanced Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    animation: slideInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.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.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Enhanced Hero Animations */
.hero-title {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1.1s both;
}

/* Enhanced Floating Cards */
.floating-card {
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    animation-delay: 4s;
}

/* Enhanced Social Icons */
.social-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

/* Enhanced Stats Animation */
.stat-number {
    animation: fadeInUp 0.8s ease-out both;
}

.stat-label {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Guidelines Page Styles */
.guidelines-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.guidelines-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.guidelines-hero .hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.guidelines-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.guideline-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

.guideline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.guideline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guideline-card:hover .guideline-icon {
    transform: scale(1.1);
}

.guideline-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.guideline-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.guidelines-rules {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.guidelines-rules h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-align: center;
}

.rules-section {
    margin-bottom: 2rem;
}

.rules-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #667eea;
}

.rules-section ul {
    list-style: none;
    padding: 0;
}

.rules-section li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.rules-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.enforcement-section {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.enforcement-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
    text-align: center;
}

.enforcement-section p {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 2rem;
}

.enforcement-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.step-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-section {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.contact-section p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Guide Page Styles */
.guide-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.guide-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.guide-hero .hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.guide-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.toc-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.toc-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 15px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.toc-item:hover {
    transform: translateY(-5px);
    background: #333;
    border-color: rgba(102, 126, 234, 0.3);
}

.toc-item i {
    font-size: 1.5rem;
    color: #667eea;
}

.guide-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.guide-section {
    margin-bottom: 4rem;
}

.guide-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-section h2 i {
    color: #667eea;
}

.content-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.content-card p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-box {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
}

.info-box h4 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.comparison-card h4 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.agent-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

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

.agent-item strong {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.rating {
    color: #feca57;
    margin-left: 1rem;
}

.agent-item p {
    color: #b0b0b0;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b0b0b0;
    margin: 0;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.method-card h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-card h4 i {
    color: #667eea;
}

.method-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.example-box {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.example-box strong {
    color: #667eea;
}

.example-box code {
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.taobao-link {
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    white-space: pre-wrap;
    display: block;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Trusted Agents Section */
.trusted-agents-section {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    margin: 2rem 0;
    text-align: center;
}

.trusted-agents-section h4 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trusted-agents-section h4 i {
    color: #667eea;
}

.trusted-agents-section p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.trusted-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.agent-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.agent-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.agent-button:hover::before {
    left: 100%;
}

.agent-button:hover {
    transform: translateY(-3px);
    background: #2a2a2a;
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.agent-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.agent-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.agent-info strong {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.agent-bonus {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 4rem;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, #667eea, #764ba2);
    opacity: 0.3;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #b0b0b0;
    margin: 0;
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.qc-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.qc-card h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qc-card h4 i {
    color: #667eea;
}

.qc-card ul {
    list-style: none;
    padding: 0;
}

.qc-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.qc-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.warning-box {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #feca57;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box h4 i {
    color: #feca57;
}

.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.shipping-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.shipping-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.shipping-card h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-card h4 i {
    color: #667eea;
}

.shipping-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.shipping-details span {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.time {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.price {
    background: rgba(254, 202, 87, 0.2);
    color: #feca57;
}

.tracking {
    background: rgba(72, 219, 251, 0.2);
    color: #48dbfb;
}

.shipping-card p {
    color: #b0b0b0;
    margin: 0;
}

.shipping-tips {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin: 2rem 0;
}

.shipping-tips h4 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.shipping-tips ul {
    list-style: none;
    padding: 0;
}

.shipping-tips li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.shipping-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.tip-card h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-card h4 i {
    color: #667eea;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.tip-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.faq-section {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.faq-item h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #b0b0b0;
    margin: 0;
}

/* Responsive Design for Guide */
@media (max-width: 768px) {
    .guide-hero .hero-title {
        font-size: 2rem;
    }
    
    .guide-hero .hero-description {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .shipping-details {
        justify-content: center;
    }
}

/* Guide Advertisement Section */
.guide-ad-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.guide-ad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.guide-ad-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.guide-ad-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    animation: floatAround 8s ease-in-out infinite;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2.5s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 5s;
}

@keyframes floatAround {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-25px) rotate(270deg);
        opacity: 1;
    }
}

.guide-ad-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-ad-text p {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: #667eea;
    font-size: 1rem;
}

.feature-item span {
    color: #e0e0e0;
    font-weight: 500;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.guide-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.6s;
}

.guide-btn:hover::before {
    left: 100%;
}

.guide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.guide-btn i:first-child {
    font-size: 1.2rem;
}

.guide-btn i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.guide-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design for Guide Ad */
@media (max-width: 768px) {
    .guide-ad-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .guide-ad-text h2 {
        font-size: 2rem;
    }
    
    .guide-ad-text p {
        font-size: 1rem;
    }
    
    .guide-features {
        grid-template-columns: 1fr;
    }
    
    .guide-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
