* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --secondary-color: #7B68EE;
    --accent-color: #50C878;
    --danger-color: #E74C3C;
    --warning-color: #F39C12;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

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

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    background-color: rgba(74, 144, 226, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="100" r="150" fill="white"/><circle cx="800" cy="400" r="200" fill="white"/><circle cx="1000" cy="150" r="100" fill="white"/></svg>');
    background-size: cover;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #45b56a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 200, 120, 0.3);
}

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

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.emergency-section {
    background-color: #fff5f5;
    padding: 3rem 0;
}

.emergency-box {
    background-color: white;
    border-left: 5px solid var(--danger-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.emergency-box h2 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

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

.emergency-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.emergency-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.emergency-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--danger-color);
    text-decoration: none;
    margin: 1rem 0;
}

.emergency-number:hover {
    color: #c0392b;
}

.info-section,
.statistics-section,
.content-section,
.resources-section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

.info-card,
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover,
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--secondary-color);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-detail {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.stat-card.critical {
    border-left: 5px solid var(--danger-color);
}

.stat-card.critical .stat-number {
    color: var(--danger-color);
}

.stat-card.warning {
    border-left: 5px solid var(--warning-color);
}

.stat-card.warning .stat-number {
    color: var(--warning-color);
}

.stat-card.info {
    border-left: 5px solid var(--primary-color);
}

.stat-card.info .stat-number {
    color: var(--primary-color);
}

.stat-card.danger {
    border-left: 5px solid #e74c3c;
}

.stat-card.danger .stat-number {
    color: #e74c3c;
}

.alt-bg {
    background-color: var(--light-bg);
}

.quote-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 4rem 0;
    color: white;
}

.quote-section blockquote {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-style: normal;
    opacity: 0.8;
}

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

.resource-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.resource-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
}

.content-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.symptoms-grid,
.tips-grid,
.help-resources,
.cyberbullying-types,
.prevention-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.symptom-card,
.tip-card,
.resource-card,
.type-card,
.prevention-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.symptom-card h3,
.tip-card h3,
.resource-card h3,
.type-card h3,
.prevention-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.symptom-card ul,
.resource-card ul {
    list-style-position: inside;
    color: var(--text-dark);
}

.symptom-card li,
.resource-card li {
    margin-bottom: 0.5rem;
}

.tip-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.warning-box {
    background-color: #fff5e6;
    border-left: 5px solid var(--warning-color);
}

.hope-section {
    background: linear-gradient(135deg, var(--accent-color), #45b56a);
    padding: 4rem 0;
}

.hope-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hope-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hope-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sources-section {
    background-color: var(--light-bg);
    padding: 3rem 0;
}

.sources-list {
    list-style-position: inside;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sources-list li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.stats-intro {
    padding: 2rem 0;
}

.intro-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(123, 104, 238, 0.1));
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

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

.recognition-card,
.step-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.help-item,
.positive-item {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #e8f5e9;
    border-left: 5px solid var(--accent-color);
}

.help-item.avoid {
    background-color: #ffebee;
    border-left: 5px solid var(--danger-color);
}

.help-item h3,
.positive-item h3 {
    margin-bottom: 0.5rem;
}

.discord-hero {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    padding: 4rem 0;
}

.discord-content {
    text-align: center;
    color: white;
}

.discord-icon {
    margin-bottom: 2rem;
}

.discord-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.discord-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.btn-discord {
    background-color: white;
    color: #5865F2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-discord:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-discord-large {
    background-color: #5865F2;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-discord-large:hover {
    background-color: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

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

.feature-card,
.rule-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.channel-group {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.channel-group h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.channel-item {
    padding: 0.7rem;
    background-color: var(--light-bg);
    border-radius: 5px;
    font-family: monospace;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .info-grid,
    .stats-grid,
    .emergency-contacts,
    .symptoms-grid,
    .tips-grid,
    .help-resources,
    .resources-grid,
    .features-grid,
    .rules-grid,
    .channels-preview {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hope-box h2 {
        font-size: 2rem;
    }
}