/* Grundstil Dark Mode */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* Header mit Login-Button */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-logo:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.btn {
    padding: 0.75rem 1.5rem;
    background-color: #1e88e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

.btn-secondary {
    background-color: #424242;
}

.btn-secondary:hover {
    background-color: #616161;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-danger {
    background-color: #e53935;
}

.btn-danger:hover {
    background-color: #c62828;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

/* Main Content */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    min-height: calc(100vh - 100px); /* Footer-Höhe abziehen */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 4rem 0;
    justify-content: center;
}

.social-icon {
    color: #e0e0e0;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    border: 2px solid transparent;
}

.social-icon:hover {
    color: #1e88e5;
    transform: translateY(-3px);
    border-color: #1e88e5;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1800px;
    margin-top: 2rem;
    align-items: start;
}

.plugins-sidebar,
.updates-sidebar {
    text-align: left;
    padding: 0;
}

.plugins-sidebar h3,
.updates-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    text-align: center;
    border-bottom: 2px solid #1e88e5;
    padding-bottom: 0.5rem;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.plugins-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plugin-preview-item {
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plugin-preview-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Plugin Detail Page */
.plugin-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.plugin-detail-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.6s ease-out;
}

.plugin-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.plugin-detail-image {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.plugin-detail-info {
    flex: 1;
}

.plugin-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plugin-detail-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.plugin-detail-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #757575;
}

.plugin-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.plugin-detail-section {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plugin-detail-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 2px solid #1e88e5;
    padding-bottom: 0.5rem;
}

.plugin-commands-detail,
.plugin-permissions-detail {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plugin-commands-detail pre,
.plugin-permissions-detail pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Mobile Responsive für Plugin Detail */
@media (max-width: 768px) {
    .plugin-detail-card {
        padding: 1.5rem;
    }

    .plugin-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .plugin-detail-image {
        width: 150px;
        height: 150px;
        align-self: center;
    }

    .plugin-detail-title {
        font-size: 2rem;
    }

    .plugin-detail-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plugin-detail-section {
        padding: 1.5rem;
    }

    .plugin-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* Kontakt-Seite */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
}

.contact-container {
    text-align: center;
}

.contact-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.contact-intro {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method strong {
    color: #1e88e5;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: #b0b0b0;
}

/* Kontakt-Items im Dashboard */
.contact-item {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.contact-item-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.contact-date {
    font-size: 0.85rem;
    color: #757575;
}

/* Mobile Responsive für Kontakt */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container h1 {
        font-size: 2.5rem;
    }

    .contact-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 1rem;
        padding-top: 80px;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .contact-method {
        padding: 0.75rem;
    }
}

.plugin-preview-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.plugin-preview-content {
    flex: 1;
}

.plugin-preview-title {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.plugin-preview-commands {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.hero-text {
    font-weight: 700;
    font-size: 5rem;
    user-select: none;
    margin-bottom: 6rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8),
                 0 5px 15px rgba(0, 0, 0, 0.6);
    animation: fadeInDown 1s ease-out;
    display: inline-block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Section */
.blog-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.posts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1600px;
}

/* Plugins Section */
.plugins-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
}

.plugins-section h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.plugins-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.plugin-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.plugin-card:nth-child(1) { animation-delay: 0.1s; }
.plugin-card:nth-child(2) { animation-delay: 0.2s; }
.plugin-card:nth-child(3) { animation-delay: 0.3s; }
.plugin-card:nth-child(4) { animation-delay: 0.4s; }
.plugin-card:nth-child(5) { animation-delay: 0.5s; }

.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.plugin-content {
    flex: 1;
}

.plugin-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.plugin-name {
    font-size: 0.85rem;
    color: #1e88e5;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plugin-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plugin-commands {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0.75rem;
    font-family: 'Courier New', monospace;
}

.plugin-permissions {
    font-size: 0.85rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.plugin-download {
    margin-top: 1rem;
}

.no-plugins {
    text-align: center;
    padding: 3rem;
    color: #757575;
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

.post-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    animation: fadeInUp 0.6s ease-out backwards;
    width: 100%;
    max-width: 1400px;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.post-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-ankuendigungen {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.category-updates {
    background-color: rgba(30, 136, 229, 0.2);
    color: #1e88e5;
    border: 1px solid rgba(30, 136, 229, 0.3);
}

.category-veroeffentlichung {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.post-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.post-date {
    font-size: 0.85rem;
    color: #757575;
    margin-top: 1rem;
}

.no-posts {
    text-align: center;
    padding: 3rem;
    color: #757575;
    font-size: 1.2rem;
}

/* Login Page */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.login-box {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 400px;
}

.login-box h1 {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    background-color: rgba(229, 57, 53, 0.2);
    color: #e53935;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(229, 57, 53, 0.3);
    text-align: center;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    text-align: center;
}

/* Dashboard */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-section {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-item {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.post-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.post-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.post-item-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.post-item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    main {
        padding-top: 20vh;
    }

    .hero-text {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .blog-section {
        padding: 0 1rem;
    }

    .plugins-container {
        grid-template-columns: 1fr;
    }

    .plugin-card {
        flex-direction: column;
    }

    .plugin-image {
        width: 100%;
        height: 200px;
    }

    header {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .dashboard-container {
        padding: 1rem;
        padding-top: 80px;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .plugins-section {
        padding: 1rem;
        padding-top: 80px;
    }

    /* Dashboard Mobile Optimierungen */
    .dashboard-header h1 {
        font-size: 2rem;
        text-align: center;
    }

    .dashboard-section {
        padding: 1.5rem;
    }

    .dashboard-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .post-item {
        padding: 1rem;
    }

    .post-item-title {
        font-size: 1rem;
    }

    .btn-small {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

/* Post Detail Styles */
.post-detail-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-detail-container {
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
}

.post-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.post-detail-header {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    text-align: center;
}

.post-detail-info {
    text-align: center;
}

.post-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.post-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.post-detail-date {
    color: #b0b0b0;
    font-weight: 500;
}

.post-detail-content {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.post-detail-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.post-detail-description p {
    margin: 0;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .post-detail-section {
        padding: 1rem 0;
        align-items: flex-start;
    }

    .post-detail-container {
        padding: 0 0.5rem;
    }

    .post-detail-card {
        margin: 1rem 0;
    }

    .post-detail-header {
        padding: 2rem 1.5rem;
    }

    .post-detail-title {
        font-size: 2.2rem;
    }

    .post-detail-content {
        padding: 2rem 1.5rem;
    }

    .post-detail-description {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 1.4rem;
    color: #b0b0b0;
    font-weight: 600;
}

.heart {
    color: #e53935;
    font-size: 1.2em;
}

.footer-login-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.footer-login-btn:hover::before {
    left: 100%;
}

.footer-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.5);
    background: linear-gradient(135deg, #1565c0 0%, #1e88e5 100%);
}

.footer-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.4);
}

/* Responsive Footer */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Desktop Footer */
@media (min-width: 769px) {
    .footer-content {
        justify-content: space-between !important;
    }

    .footer-text {
        text-align: left !important;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .plugins-sidebar,
    .updates-sidebar {
        text-align: center;
    }

    .hero-text {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .social-icons {
        gap: 1.5rem;
        margin: 1.5rem 0 3rem 0;
    }

    .blog-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-text {
        font-size: 1.2rem;
    }

    .footer-login-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}
}