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

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: 
        radial-gradient(ellipse at top, #010f1e 0%, #000510 100%),
        radial-gradient(circle at 85% 15%, rgba(64, 150, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(64, 150, 255, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, #000510 0%, #010f1e 50%, #021426 100%);
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/images/background.png');
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -3;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(64, 150, 255, 0.05) 2px, rgba(64, 150, 255, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(64, 150, 255, 0.03) 2px, rgba(64, 150, 255, 0.03) 4px);
    pointer-events: none;
    z-index: -1;
    animation: scanlines 2s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.navbar {
    background: #010f1e;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(64, 150, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 82px;
    gap: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 240px;
    height: 82px;
    object-fit: contain;
}

.logo-text {
    color: #64b5f6;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(100, 181, 246, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #4096ff;
    text-decoration: none;
    font-weight: 500;
    padding: 16px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1rem;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    border-bottom: 2px solid transparent;
}

.nav-icon {
    font-size: 1rem;
    color: #4096ff;
    text-shadow: 
        0 0 10px rgba(64, 150, 255, 0.8),
        0 0 20px rgba(64, 150, 255, 0.6),
        0 0 30px rgba(64, 150, 255, 0.4);
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4096ff, transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(64, 150, 255, 0.5);
}

.nav-menu a:hover {
    color: #4096ff;
    text-shadow: 0 0 15px rgba(64, 150, 255, 0.8);
    box-shadow: 0 0 20px rgba(64, 150, 255, 0.3);
}

.nav-menu a:hover .nav-icon {
    color: #60b0ff;
    text-shadow: 
        0 0 15px rgba(96, 176, 255, 1),
        0 0 25px rgba(64, 150, 255, 0.8),
        0 0 35px rgba(64, 150, 255, 0.6);
    filter: brightness(1.4) contrast(1.2);
    transform: scale(1.15);
}

.nav-menu a:hover::after {
    width: 100%;
    box-shadow: 
        0 0 15px rgba(64, 150, 255, 0.8),
        0 0 30px rgba(64, 150, 255, 0.5);
}

/* Auth menu styles */
.auth-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(100, 200, 255, 0.3);
}

.auth-menu li {
    position: relative;
}

.auth-link {
    color: #64c8ff;
    text-decoration: none;
    font-weight: 400;
    padding: 12px 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    border-bottom: 2px solid transparent;
}

.auth-icon {
    font-size: 0.8rem;
    color: #64c8ff;
    text-shadow: 
        0 0 8px rgba(100, 200, 255, 0.6),
        0 0 16px rgba(100, 200, 255, 0.4);
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64c8ff, transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(100, 200, 255, 0.4);
}

.auth-link:hover {
    color: #80d4ff;
    text-shadow: 0 0 12px rgba(128, 212, 255, 0.7);
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.25);
}

.auth-link:hover .auth-icon {
    color: #80d4ff;
    text-shadow: 
        0 0 12px rgba(128, 212, 255, 0.8),
        0 0 20px rgba(100, 200, 255, 0.6);
    filter: brightness(1.3) contrast(1.15);
    transform: scale(1.1);
}

.auth-link:hover::after {
    width: 100%;
    box-shadow:
        0 0 12px rgba(128, 212, 255, 0.7),
        0 0 24px rgba(100, 200, 255, 0.4);
}

/* Panel and Logout link styles */
.panel-link {
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
}

.panel-link .auth-icon {
    font-size: 1rem !important;
}

.logout-link {
    color: #ff6b6b !important;
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
}

.logout-link .auth-icon {
    color: #ff6b6b !important;
    font-size: 1.1rem !important;
    text-shadow:
        0 0 8px rgba(255, 107, 107, 0.6),
        0 0 16px rgba(255, 107, 107, 0.4) !important;
}

.logout-link::after {
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent) !important;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.4) !important;
}

.logout-link:hover {
    color: #ff8a8a !important;
    text-shadow: 0 0 12px rgba(255, 138, 138, 0.7) !important;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.25) !important;
}

.logout-link:hover .auth-icon {
    color: #ff8a8a !important;
    text-shadow:
        0 0 12px rgba(255, 138, 138, 0.8),
        0 0 20px rgba(255, 107, 107, 0.6) !important;
}

.logout-link:hover::after {
    width: 100%;
    box-shadow:
        0 0 12px rgba(255, 138, 138, 0.7),
        0 0 24px rgba(255, 107, 107, 0.4) !important;
}

.nav-menu .active {
    color: #4096ff;
    border-color: #4096ff;
    text-shadow: 0 0 15px rgba(64, 150, 255, 0.8);
    box-shadow:
        0 0 20px rgba(64, 150, 255, 0.5),
        0 0 40px rgba(64, 150, 255, 0.3);
}

.nav-menu .active::before {
    opacity: 0.6;
}

/* Page container styles */
.page-container {
    padding-top: 102px;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Panel grid with 3 columns */
.panel-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.panel-grid-three .feature-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-grid-three .feature-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.page-header {
    text-align: center;
    margin-bottom: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.4rem;
    color: #ffa726;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(255, 167, 38, 0.6),
        0 0 40px rgba(255, 167, 38, 0.4);
    transition: all 0.3s ease;
}

.page-header p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    padding: 0 20px;
}

.product-card {
    background: 
        linear-gradient(135deg, rgba(1, 15, 30, 0.95) 0%, rgba(2, 20, 38, 0.9) 50%, rgba(1, 15, 30, 0.85) 100%),
        radial-gradient(circle at 20% 80%, rgba(64, 150, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.06) 0%, transparent 60%);
    border: 1px solid rgba(64, 150, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    width: 280px;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-self: center;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #4096ff;
    box-shadow: 
        0 18px 35px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(64, 150, 255, 0.3);
}

.product-image {
    height: 140px;
    width: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #010f1e 0%, #021426 100%);
    margin: 20px auto 15px auto;
    border-radius: 10px;
    border: 2px dashed rgba(64, 150, 255, 0.6);
    border-image: linear-gradient(45deg, 
        rgba(64, 150, 255, 0.8), 
        rgba(255, 167, 38, 0.6), 
        rgba(64, 150, 255, 0.8), 
        rgba(255, 167, 38, 0.6)
    ) 2;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(64, 150, 255, 0.15),
        inset 0 0 30px rgba(64, 150, 255, 0.05);
}

.product-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.product-card:hover .product-screenshot {
    transform: scale(1.05);
}

.product-card:hover .product-info h3 {
    color: #ffb74d;
    text-shadow: 
        0 0 20px rgba(255, 183, 77, 0.8),
        0 0 35px rgba(255, 167, 38, 0.6);
}

.product-info {
    padding: 15px;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.35rem;
    color: #ffa726;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 
        0 0 15px rgba(255, 167, 38, 0.6),
        0 0 25px rgba(255, 167, 38, 0.4);
    transition: all 0.3s ease;
}

.product-price {
    font-size: 1.25rem;
    color: #4096ff;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(64, 150, 255, 0.5);
}

.product-button {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 7px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0px;
    font-size: 0.85rem;
    margin-top: 16px;
}

.product-button:hover {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a9a 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 15px rgba(26, 58, 92, 0.4),
        0 0 12px rgba(26, 58, 92, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 35px 0 50px 0;
    flex-shrink: 0;
}

.pagination-button {
    background: rgba(1, 15, 30, 0.8);
    color: #4096ff;
    border: 1px solid rgba(64, 150, 255, 0.3);
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 50px;
}

.pagination-button:hover {
    background: rgba(64, 150, 255, 0.1);
    border-color: #4096ff;
    transform: translateY(-2px);
}

.pagination-button.active {
    background: #4096ff;
    color: #ffffff;
    border-color: #4096ff;
    box-shadow: 0 0 15px rgba(64, 150, 255, 0.5);
}

/* Page animations */
.page-container {
    animation: pageAppear 1.2s ease-out;
}

@keyframes pageAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: pageAppear 1.5s ease-out;
}

/* Features page styles */
.features-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
    width: 100%;
    justify-content: space-between;
}

.features-grid .feature-section {
    flex: 1;
    width: 48%;
    max-width: 48%;
    flex-shrink: 0;
    min-width: 400px;
}

.feature-section {
    background: 
        linear-gradient(135deg, rgba(1, 15, 30, 0.95) 0%, rgba(2, 20, 38, 0.9) 50%, rgba(1, 15, 30, 0.85) 100%),
        radial-gradient(circle at 20% 80%, rgba(64, 150, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.06) 0%, transparent 60%);
    border: 1px solid rgba(64, 150, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
    height: fit-content;
    animation: featureFadeIn 1.5s ease-out;
}

.features-grid .feature-section:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.features-grid .feature-section:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes featureFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-section:hover {
    border-color: rgba(64, 150, 255, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(64, 150, 255, 0.2);
    transform: translateY(-5px);
}

.section-header {
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(64, 150, 255, 0.2);
}

.section-header h2 {
    font-size: 1.8rem;
    color: #ffa726;
    margin-bottom: 8px;
    text-shadow: 
        0 0 15px rgba(255, 167, 38, 0.6),
        0 0 25px rgba(255, 167, 38, 0.4);
}

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

.feature-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(64, 150, 255, 0.1);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #ffffff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(64, 150, 255, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    color: #4096ff;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(64, 150, 255, 0.5);
}

.feature-icon {
    color: #4096ff;
    margin-right: 12px;
    font-size: 1rem;
    text-shadow: 
        0 0 10px rgba(64, 150, 255, 0.6),
        0 0 20px rgba(64, 150, 255, 0.4);
    transition: all 0.3s ease;
}

.feature-list li:hover .feature-icon {
    color: #ffa726;
    text-shadow: 
        0 0 10px rgba(255, 167, 38, 0.6),
        0 0 20px rgba(255, 167, 38, 0.4);
    transform: scale(1.1);
}

.cta-section {
    text-align: center;
    margin: 40px 0 80px 0;
    padding: 20px 0;
}

.cta-button {
    background: 
        linear-gradient(135deg, rgba(1, 15, 30, 0.95) 0%, rgba(64, 150, 255, 0.1) 50%, rgba(1, 15, 30, 0.95) 100%);
    color: #4096ff;
    text-decoration: none;
    padding: 16px 45px;
    border: 2px solid #4096ff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 0 20px rgba(64, 150, 255, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(64, 150, 255, 0.2);
    text-shadow: 0 0 10px rgba(64, 150, 255, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 150, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    background: 
        linear-gradient(135deg, rgba(64, 150, 255, 0.15) 0%, rgba(1, 15, 30, 0.95) 50%, rgba(64, 150, 255, 0.15) 100%);
    color: #64b5f6;
    border-color: #64b5f6;
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(64, 150, 255, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(64, 150, 255, 0.3);
    text-shadow: 
        0 0 15px rgba(64, 150, 255, 0.9),
        0 0 30px rgba(64, 150, 255, 0.6);
    letter-spacing: 3px;
}

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

.button-icon {
    font-size: 1.2em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cta-button:hover .button-icon {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-style-button {
    color: #4096ff;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    background: rgba(1, 15, 30, 0.3);
    border-radius: 6px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(64, 150, 255, 0.2);
}

.nav-style-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4096ff, transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(64, 150, 255, 0.5);
}

.nav-style-button:hover {
    color: #64b5f6;
    text-shadow: 0 0 15px rgba(64, 150, 255, 0.8);
    box-shadow: 
        0 0 20px rgba(64, 150, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: rgba(64, 150, 255, 0.4);
    background: rgba(1, 15, 30, 0.5);
}

.nav-style-button:hover::after {
    width: 100%;
    box-shadow: 
        0 0 15px rgba(64, 150, 255, 0.8),
        0 0 30px rgba(64, 150, 255, 0.5);
}

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

/* Contact page styles */

/* Admin Section */
.admin-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.admin-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #4096ff;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(64, 150, 255, 0.6);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.admin-card {
    background: linear-gradient(135deg, 
        rgba(1, 15, 30, 0.9) 0%, 
        rgba(2, 20, 38, 0.85) 50%, 
        rgba(1, 15, 30, 0.9) 100%);
    border: 1px solid rgba(64, 150, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.admin-card:hover {
    border-color: rgba(64, 150, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(64, 150, 255, 0.2);
}

.admin-avatar {
    margin-bottom: 1rem;
}

.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(64, 150, 255, 0.5);
    transition: all 0.3s ease;
}

.admin-card:hover .avatar-img {
    border-color: rgba(64, 150, 255, 0.8);
    box-shadow: 0 0 20px rgba(64, 150, 255, 0.4);
}

.admin-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4096ff;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.discord-link:hover {
    color: #60b0ff;
    text-shadow: 0 0 10px rgba(64, 150, 255, 0.6);
}

.admin-email {
    color: #64b5f6;
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 0 8px rgba(100, 181, 246, 0.4);
}

/* Discord Server Section */
.discord-server-section {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.discord-server-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        rgba(114, 137, 218, 0.2) 0%, 
        rgba(88, 101, 242, 0.15) 100%);
    border: 1px solid rgba(114, 137, 218, 0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discord-server-link:hover {
    border-color: rgba(114, 137, 218, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.3);
}

.discord-server-link .discord-icon {
    font-size: 2rem;
    color: #7289da;
    text-shadow: 0 0 15px rgba(114, 137, 218, 0.8);
}

.server-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #ffffff;
}

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

/* Quick Message Section */
.quick-message-section {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.quick-message-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #4096ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(64, 150, 255, 0.6);
}

.quick-message-form {
    background: linear-gradient(135deg, 
        rgba(1, 10, 20, 0.95) 0%, 
        rgba(1, 12, 24, 0.9) 50%, 
        rgba(1, 10, 20, 0.95) 100%);
    border: 1px solid rgba(64, 150, 255, 0.2);
    border-radius: 8px;
    padding: 1.8rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.form-row .form-group input {
    padding: 10px 14px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(64, 150, 255, 0.15);
}

.form-row .form-group label {
    font-size: 0.9rem;
    color: #94c7f5;
    margin-bottom: 6px;
}

.quick-message-form .form-group:not(.form-row .form-group) label {
    font-size: 0.9rem;
    color: #94c7f5;
    margin-bottom: 8px;
}

.quick-message-form .form-group:not(.form-row .form-group) textarea {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(64, 150, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.quick-message-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(64, 150, 255, 0.4);
    box-shadow: 
        0 0 15px rgba(64, 150, 255, 0.2),
        inset 0 0 10px rgba(64, 150, 255, 0.05);
}

.quick-submit {
    background: linear-gradient(135deg, rgba(1, 15, 30, 0.9) 0%, rgba(64, 150, 255, 0.2) 50%, rgba(1, 15, 30, 0.9) 100%);
    color: #4096ff;
    border: 1px solid rgba(64, 150, 255, 0.3);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.quick-submit:hover {
    background: linear-gradient(135deg, rgba(64, 150, 255, 0.3) 0%, rgba(1, 15, 30, 0.9) 50%, rgba(64, 150, 255, 0.3) 100%);
    color: #64b5f6;
    border-color: rgba(64, 150, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(64, 150, 255, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 10px rgba(64, 150, 255, 0.8);
    letter-spacing: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info, .contact-form-section {
    background: 
        linear-gradient(135deg, rgba(1, 15, 30, 0.95) 0%, rgba(2, 20, 38, 0.9) 50%, rgba(1, 15, 30, 0.85) 100%),
        radial-gradient(circle at 20% 80%, rgba(64, 150, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.06) 0%, transparent 60%);
    border: 1px solid rgba(64, 150, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    animation: featureFadeIn 1.5s ease-out;
}

.contact-info:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-form-section:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-info h2, .contact-form-section h2 {
    color: #ffa726;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 
        0 0 15px rgba(255, 167, 38, 0.6),
        0 0 25px rgba(255, 167, 38, 0.4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(64, 150, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(64, 150, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    color: #4096ff;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    text-shadow: 
        0 0 10px rgba(64, 150, 255, 0.6),
        0 0 20px rgba(64, 150, 255, 0.4);
}

.contact-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(64, 150, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4096ff;
    box-shadow: 
        0 0 15px rgba(64, 150, 255, 0.3),
        inset 0 0 10px rgba(64, 150, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    background: linear-gradient(135deg, #4096ff 0%, #60b0ff 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-submit:hover {
    background: linear-gradient(135deg, #60b0ff 0%, #80c0ff 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(64, 150, 255, 0.4),
        0 0 25px rgba(64, 150, 255, 0.3);
}

/* Responsive design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid .feature-section {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .features-grid .feature-section {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-section {
        padding: 20px;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 82px;
    padding-bottom: 2rem;
}


.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 167, 38, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(64, 150, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 167, 38, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(64, 150, 255, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 167, 38, 0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.7;
    z-index: -1;
}

.hero-particles::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(64, 150, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(64, 150, 255, 0.2) 0%, transparent 40%);
    animation: heroRotate 12s linear infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(-10px) rotate(240deg); }
}

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


.hero-content {
    position: relative;
    z-index: 1;
    animation: spectacularEntrance 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes spectacularEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateY(-180deg) translateY(-100px);
        filter: blur(20px) brightness(0.3);
    }
    25% {
        opacity: 0.3;
        transform: scale(0.6) rotateY(-90deg) translateY(-50px);
        filter: blur(10px) brightness(0.6);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9) rotateY(0deg) translateY(20px);
        filter: blur(5px) brightness(0.8);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.1) rotateY(15deg) translateY(-10px);
        filter: blur(2px) brightness(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateY(0px);
        filter: blur(0px) brightness(1);
    }
}

@keyframes heroFadeIn {
    0% { 
        opacity: 0;
        transform: translateY(50px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5) rotateX(-90deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(1.1) rotateX(15deg);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateY(-30deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
        filter: blur(0px);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) rotateY(30deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
        filter: blur(0px);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
        filter: blur(8px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.1);
        filter: blur(2px);
    }
    80% {
        opacity: 1;
        transform: translateY(10px) scale(0.95);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateZ(-180deg);
        filter: blur(15px) brightness(0.5);
    }
    70% {
        opacity: 0.9;
        transform: scale(1.1) rotateZ(10deg);
        filter: blur(2px) brightness(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg);
        filter: blur(0px) brightness(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    animation: titlePulse 3s ease-in-out infinite, titleEntrance 2s ease-out 0.5s both;
    position: relative;
    font-family: 'Segoe UI', 'Trebuchet MS', 'Arial Black', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.title-logo {
    height: 6.5rem;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(64, 150, 255, 0.6)) 
            drop-shadow(0 0 40px rgba(255, 167, 38, 0.4));
    animation: titleEntrance 2s ease-out 0.5s both;
    margin-top: 0.5rem;
}

.title-main {
    background: linear-gradient(135deg, #0f1f3d 0%, #1a3a5c 15%, #2a5a9a 35%, #4096ff 60%, #60b0ff 85%, #2a5a9a 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(15, 31, 61, 0.9)) 
            drop-shadow(0 0 50px rgba(26, 58, 92, 0.7))
            drop-shadow(0 0 70px rgba(42, 90, 154, 0.5));
    position: relative;
}

.title-main::before {
    content: 'Mu-Desk';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #4096ff 0%, #60b0ff 50%, #ffa726 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite reverse;
    opacity: 0.7;
    z-index: -1;
    transform: translate(2px, 2px);
}

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

@keyframes titlePulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(64, 150, 255, 0.8)) 
                drop-shadow(0 0 60px rgba(255, 167, 38, 0.6));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(64, 150, 255, 1)) 
                drop-shadow(0 0 80px rgba(255, 167, 38, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    animation: slideInLeft 1.5s ease-out 1s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: slideInRight 1.5s ease-out 1.2s both;
}

.hero-description strong {
    color: #ffa726;
    text-shadow: 0 0 10px rgba(255, 167, 38, 0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: bounceInUp 1.8s ease-out 1.5s both;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(64, 150, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.feature-highlight:hover {
    border-color: rgba(255, 167, 38, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.3);
    color: #ffffff;
}

.feature-highlight .feature-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(64, 150, 255, 0.6));
}

.feature-separator {
    width: 2px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(64, 150, 255, 0.3) 20%,
        rgba(64, 150, 255, 0.8) 50%,
        rgba(255, 167, 38, 0.8) 50%,
        rgba(255, 167, 38, 0.3) 80%,
        transparent 100%
    );
    border-radius: 2px;
    position: relative;
}

.feature-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(64, 150, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(64, 150, 255, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 4rem 0 6rem 0;
    flex-wrap: wrap;
    animation: zoomIn 1.5s ease-out 2s both;
}

.hero-cta {
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.hero-cta.primary {
    background: linear-gradient(135deg,
        rgba(64, 150, 255, 0.9) 0%,
        rgba(96, 176, 255, 0.9) 50%,
        rgba(42, 90, 154, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(64, 150, 255, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(64, 150, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta.primary::before,
.hero-cta.secondary::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 ease;
}

.hero-cta.primary:hover::before,
.hero-cta.secondary:hover::before {
    left: 100%;
}

.hero-cta.secondary {
    background: linear-gradient(135deg,
        rgba(64, 150, 255, 0.9) 0%,
        rgba(96, 176, 255, 0.9) 50%,
        rgba(42, 90, 154, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(64, 150, 255, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(64, 150, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta:hover {
    transform: translateY(-5px);
}

.hero-cta.primary:hover {
    background: linear-gradient(135deg,
        rgba(64, 150, 255, 1) 0%,
        rgba(96, 176, 255, 1) 50%,
        rgba(42, 90, 154, 1) 100%);
    border-color: rgba(64, 150, 255, 0.8);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(64, 150, 255, 0.5),
        0 0 50px rgba(64, 150, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta.secondary:hover {
    background: linear-gradient(135deg,
        rgba(64, 150, 255, 1) 0%,
        rgba(96, 176, 255, 1) 50%,
        rgba(42, 90, 154, 1) 100%);
    border-color: rgba(64, 150, 255, 0.8);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(64, 150, 255, 0.5),
        0 0 50px rgba(64, 150, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-support {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 3rem auto;
    animation: fadeInUp 1.2s ease-out 2.5s both;
}

.discord-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, 
        rgba(64, 150, 255, 0.2) 0%, 
        rgba(114, 137, 218, 0.2) 50%, 
        rgba(255, 167, 38, 0.15) 100%);
    padding: 16px 32px;
    border-radius: 25px;
    border: 1px solid rgba(64, 150, 255, 0.4);
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.discord-button:hover {
    background: linear-gradient(135deg, 
        rgba(64, 150, 255, 0.3) 0%, 
        rgba(114, 137, 218, 0.3) 50%, 
        rgba(255, 167, 38, 0.25) 100%);
    border-color: #4096ff;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(64, 150, 255, 0.4);
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

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

.discord-icon {
    font-size: 1.4rem;
    color: #4096ff;
    text-shadow: 0 0 15px rgba(64, 150, 255, 0.8);
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.support-text strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.support-badge {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffa726;
    text-shadow: 0 0 15px rgba(255, 167, 38, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #b3e5fc;
    text-shadow: 0 0 10px rgba(179, 229, 252, 0.6);
    animation: heroFadeIn 2s ease-out 0.5s both;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #81d4fa;
    text-shadow: 0 0 5px rgba(129, 212, 250, 0.4);
    animation: heroFadeIn 2s ease-out 1s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button, .download-button, .login-button {
    background: linear-gradient(135deg, #4096ff 0%, #010f1e 50%, #4096ff 100%);
    color: #ffffff;
    padding: 20px 50px;
    border: 2px solid #4096ff;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(64, 150, 255, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    animation: ctaFadeIn 2s ease-out 1.5s both, ctaPulse 3s ease-in-out infinite 3s;
}

@keyframes ctaFadeIn {
    0% { 
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(64, 150, 255, 0.4),
            0 8px 25px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(64, 150, 255, 0.8),
            0 12px 35px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.cta-button::before, .download-button::before, .login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cta-button::after, .download-button::after, .login-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cta-button:hover, .download-button:hover, .login-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(64, 150, 255, 0.8),
        0 15px 50px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #4096ff 0%, #010f1e 50%, #4096ff 100%);
    border-color: #4096ff;
    letter-spacing: 4px;
    color: #ffffff;
}

.cta-button:hover::before, .download-button:hover::before, .login-button:hover::before {
    left: 0;
}

.cta-button:hover::after, .download-button:hover::after, .login-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:active, .download-button:active, .login-button:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

section {
    padding: 80px 0;
}

/* Features page styles */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 1000px;
}

.feature-item {
    background: rgba(100, 181, 246, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(100, 181, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(100, 181, 246, 0.12);
    border-color: rgba(100, 181, 246, 0.4);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.2);
}

.feature-item h3 {
    color: #64b5f6;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: #e3f2fd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.features {
    background: rgba(13, 27, 42, 0.7);
}

.features h2, .templates h2, .download h2, .panel h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #64b5f6;
}


.feature-card {
    background: rgba(30, 60, 114, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(100, 181, 246, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.3);
    border-color: #64b5f6;
}

.feature-card h3 {
    color: #64b5f6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.templates {
    background: rgba(21, 101, 192, 0.3);
}

.download {
    background: rgba(13, 27, 42, 0.8);
    text-align: center;
}

.panel {
    background: rgba(30, 60, 114, 0.6);
    text-align: center;
}

footer {
    background: rgba(13, 27, 42, 0.9);
    padding: 8px 0;
    text-align: left;
    border-top: 1px solid rgba(100, 181, 246, 0.3);
    height: 40px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-left: 70px;
}

footer p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Style dla formularzy logowania i rejestracji */
.form-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
}

.form-wrapper {
    background: rgba(30, 60, 114, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(100, 181, 246, 0.3);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-wrapper h2 {
    text-align: center;
    color: #64b5f6;
    margin-bottom: 30px;
    font-size: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid rgba(100, 181, 246, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #64b5f6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    background: linear-gradient(45deg, #1976d2, #42a5f5);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background: linear-gradient(45deg, #1565c0, #2196f3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.form-link {
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

.form-link a {
    color: #64b5f6;
    text-decoration: none;
    font-weight: 500;
}

.form-link a:hover {
    text-decoration: underline;
}

.error-message {
    background: rgba(244, 67, 54, 0.9);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.success-message {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

/* Style dla panelu klienta */
.panel-container {
    padding: 100px 0 50px;
    min-height: 100vh;
}

.panel-header {
    text-align: center;
    margin-bottom: 50px;
}

.panel-header h1 {
    color: #64b5f6;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.panel-header p {
    font-size: 1.2rem;
    color: #e3f2fd;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.panel-card {
    background: rgba(30, 60, 114, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(100, 181, 246, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.panel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.3);
    border-color: #64b5f6;
}

.panel-card h3 {
    color: #64b5f6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.panel-card p {
    color: #e3f2fd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.panel-button {
    background: linear-gradient(45deg, #1976d2, #42a5f5);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.panel-button:hover {
    background: linear-gradient(45deg, #1565c0, #2196f3);
    transform: translateY(-1px);
}

.profile-info p {
    margin-bottom: 10px;
    color: #ffffff;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.inactive {
    background: rgba(158, 158, 158, 0.3);
    color: #ffffff;
}

.status-badge.active {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.download-list, .docs-list {
    list-style: none;
    margin-bottom: 20px;
}

.download-list li, .docs-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(100, 181, 246, 0.2);
    color: #e3f2fd;
}

.docs-list a {
    color: #64b5f6;
    text-decoration: none;
}

.docs-list a:hover {
    text-decoration: underline;
}

.support-stats {
    margin-bottom: 20px;
}

.support-item {
    color: #e3f2fd;
}

.activity-log {
    margin-bottom: 20px;
}

.activity-log p {
    color: #e3f2fd;
    margin-bottom: 10px;
}

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

.nav-menu .active {
    color: #64b5f6;
    border-bottom: 2px solid #64b5f6;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .navbar {
        clip-path: polygon(
            0 0,
            0 100px,
            300px 100px,
            330px 90px,
            360px 75px,
            390px 60px,
            420px 50px,
            100% 50px,
            100% 0
        );
    }
    
    .navbar::after {
        clip-path: polygon(
            0 0,
            0 100%,
            300px 100%,
            330px 80%,
            360px 60%,
            390px 45%,
            420px 35%,
            100% 35%,
            100% 0
        );
    }
    
    .nav-container {
        height: 100px;
        padding: 0 15px;
        gap: 30px;
        padding-top: 8px;
        padding-left: 30px;
    }
    
    .nav-menu {
        margin-top: 12px;
    }
    
    .logo {
        margin-top: 5px;
    }
    
    .logo-img {
        width: 240px;
        height: 82px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 4px;
    }
    
    .nav-menu a {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}