:root {
    --primary-color: #7289da;
    --primary-dark: #5b6eae;
    --secondary-color: #43b581;
    --dark-color: #2c2f33;
    --darker-color: #23272a;
    --light-color: #ffffff;
    --gray-color: #99aab5;
    --light-gray: #f6f6f6;
    --text-color: #2c2f33;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --border-color: #e6e6e6;
}

[data-theme="dark"] {
    --primary-color: #7289da;
    --primary-dark: #5b6eae;
    --secondary-color: #43b581;
    --dark-color: #f6f6f6;
    --darker-color: #ffffff;
    --light-color: #2c2f33;
    --gray-color: #b3b8bf;
    --light-gray: #36393f;
    --text-color: #ffffff;
    --bg-color: #36393f;
    --card-bg: #2c2f33;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --border-color: #202225;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 80px; /* Platz für die fixierte Navbar */
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 137, 218, 0.3);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 137, 218, 0.3);
}

.btn-small {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(114, 137, 218, 0.3);
}

/* Header und Navbar Styles - VEREINHEITLICHT */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-items ul {
    display: flex;
}

.nav-items ul li {
    margin-left: 30px;
}

.nav-items ul li a {
    font-weight: 500;
    position: relative;
}

.nav-items ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-items ul li a:hover::after,
.nav-items ul li a.active::after {
    width: 100%;
}

.nav-items ul li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Spezielle Navigationslinks (Status und Login) */
.special-nav-links {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.nav-portal-link {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-portal-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(88,101,242,0.3);
}

.nav-status-link {
    background: linear-gradient(135deg, #43B581, #3CA374);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-status-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(67, 181, 129, 0.3);
}

/* Theme Toggle Styles */
.theme-toggle {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

#theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#theme-toggle-btn:hover {
    background-color: var(--light-gray);
    transform: scale(1.1);
}

section {
    padding: 100px 0;
}

.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(114, 137, 218, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
    transition: background-color 0.3s ease;
}

.hero-image img {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    50% {
        transform: translate(10px, 15px) rotate(5deg);
    }
    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.bots-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    transition: background-color 0.3s ease;
}

.bots-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    transition: color 0.3s ease;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bot-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(114, 137, 218, 0.15);
}

.bot-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--light-color);
}

.bot-icon i {
    font-size: 1.8rem;
}

.bot-card h3 {
    margin-bottom: 15px;
}

.bot-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.community-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.community-content {
    flex: 1;
}

.community-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.community-content p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.community-features {
    margin-bottom: 30px;
}

.community-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.community-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.community-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.community-image img {
    max-width: 90%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.links-section {
    background-color: var(--light-gray);
}

.links-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.link-card {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(114, 137, 218, 0.15);
    color: var(--primary-color);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.link-card h3 {
    margin-bottom: 10px;
}

.link-card p {
    color: var(--gray-color);
}

.links-button {
    margin-top: 40px;
    text-align: center;
}

footer {
    background-color: var(--light-gray);
    padding: 60px 0 20px;
    color: var(--dark-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.footer-logo p {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.link-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.link-column a {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease;
}

.footer-bottom p {
    color: var(--gray-color);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

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

/* Neue Stile für die zusätzlichen Seiten */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: -80px; /* Korrektur für die fixierte Navbar */
}

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

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Discord Bots Seite */
.bot-details {
    padding: 80px 0;
}

.bot-card-large {
    background-color: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bot-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(114, 137, 218, 0.15);
}

.bot-card-content {
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.bot-icon.large {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.bot-icon.large i {
    font-size: 2.5rem;
}

.bot-info {
    flex: 1;
}

.bot-info h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.bot-info p {
    color: var(--gray-color);
    margin-bottom: 25px;
}

.bot-features {
    margin-bottom: 30px;
}

.bot-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.bot-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.bot-buttons {
    display: flex;
    gap: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Links Seite */
.links-content {
    padding: 80px 0;
}

.category-section {
    margin-bottom: 60px;
}

.category-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.category-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.links-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.link-card-detailed {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.link-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(114, 137, 218, 0.15);
}

.link-icon {
    margin-right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon i, 
.link-icon ion-icon {
    font-size: 35px;
    color: white;
}

.link-info {
    flex: 1;
}

.link-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--dark-color);
}

.link-info p {
    margin: 0 0 12px;
    color: var(--gray-color);
}

.link-url {
    display: block;
    font-size: 16px;
    color: var(--primary-color) !important;
    text-decoration: underline;
    margin-top: 5px;
    word-break: break-all;
}

.link-category {
    margin-bottom: 30px;
}

.link-category-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-left: 20px;
}

.link-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 30px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border-radius: 5px;
}

/* Login Seite Styles */
.login-container {
    max-width: 500px;
    margin: 0 auto 60px;
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px 30px;
}

.form-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f2f5;
}

.form-tab {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: #777;
    position: relative;
    transition: all 0.3s ease;
}

.form-tab.active {
    color: var(--primary-color);
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    color: var(--dark-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(88,101,242,0.2);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88,101,242,0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #ED4245, #F04747);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240,71,71,0.3);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert-success {
    background-color: rgba(67, 181, 129, 0.2);
    border: 1px solid #43B581;
    color: #2D7D58;
}

.alert-error {
    background-color: rgba(240, 71, 71, 0.2);
    border: 1px solid #F04747;
    color: #BF3B3B;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
    color: #777;
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations für Karten */
.bot-card, .link-card, .community-card, .testimonial-card, .link-card-detailed, .event-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.bot-card.visible, .link-card.visible, .community-card.visible, .testimonial-card.visible, .link-card-detailed.visible, .event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Anpassungen für Ionicons */
ion-icon {
    font-size: 24px;
    vertical-align: middle;
    --ionicon-stroke-width: 32px;
}

.bot-icon ion-icon,
.impressum-icon ion-icon,
.testimonial-avatar ion-icon,
.link-icon ion-icon {
    font-size: 32px;
    color: #ffffff;
}

.community-features li ion-icon,
.bot-features li ion-icon {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.event-details ion-icon {
    margin-right: 5px;
    color: var(--primary-color);
}

#theme-toggle-btn ion-icon {
    font-size: 22px;
}

h2 ion-icon {
    margin-right: 10px;
    vertical-align: middle;
}

/* Dark Mode Anpassungen */
[data-theme="dark"] body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

[data-theme="dark"] header {
    background-color: var(--light-color);
}

[data-theme="dark"] .navbar {
    background-color: var(--light-color);
}

[data-theme="dark"] .nav-items a {
    color: var(--text-color);
}

[data-theme="dark"] .logo {
    color: var(--text-color);
}

[data-theme="dark"] .hamburger span {
    background-color: var(--text-color);
}

[data-theme="dark"] .page-header {
    background-color: var(--primary-color);
}

[data-theme="dark"] .link-card-detailed {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

[data-theme="dark"] .link-card-detailed:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

[data-theme="dark"] .link-category-title {
    color: var(--text-color);
}

[data-theme="dark"] .link-info h3 {
    color: var(--text-color);
}

[data-theme="dark"] .link-info p {
    color: var(--gray-color);
}

[data-theme="dark"] .link-url {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .login-container {
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

[data-theme="dark"] .form-tab {
    color: var(--gray-color);
}

[data-theme="dark"] .form-tab.active {
    color: var(--primary-color);
}

[data-theme="dark"] .form-tab.active::after {
    background-color: var(--primary-color);
}

[data-theme="dark"] .form-tabs {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .form-group label {
    color: var(--text-color);
}

[data-theme="dark"] .form-control {
    background-color: var(--light-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .form-control:focus {
    border-color: var(--primary-color);
}

[data-theme="dark"] .form-footer {
    color: var(--gray-color);
}

[data-theme="dark"] .form-footer a {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container, 
    .community-section .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .community-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .community-features li {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
    
    .bot-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bot-icon.large {
        margin-bottom: 20px;
    }
    
    .bot-features li {
        justify-content: center;
    }
    
    .bot-buttons {
        justify-content: center;
    }
    
    .link-card-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .link-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .special-nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-items {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        z-index: 1000;
    }
    
    .nav-items.active {
        left: 0;
    }
    
    .nav-items ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-items ul li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .theme-toggle {
        position: absolute;
        right: 60px;
        top: 25px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 70px 0;
    }

    .bots-section h2,
    .links-section h2,
    .community-content h2,
    .page-header h1 {
        font-size: 2rem;
    }
} 