* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

:root {
    --red: #ff3333;
    --bg: #0f0f0f;
    --surface: #1a1a1a;
    --surface-light: #252525;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1;
    position: relative;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(
        45deg,
        rgba(255, 51, 51, 0.03) 0%,
        rgba(15, 15, 15, 1) 25%,
        rgba(15, 15, 15, 1) 50%,
        rgba(255, 51, 51, 0.03) 75%,
        rgba(15, 15, 15, 1) 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.top-nav {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    font-feature-settings: 'liga' 1, 'kern' 1;
}

.nav-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--gray);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.tab-btn:hover {
    color: var(--white);
    background: var(--surface);
}

.tab-btn.active {
    color: var(--red);
}

.tab-btn.active::before {
    width: 60%;
}

.main-section {
    flex: 1;
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.content-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    text-align: center;
    margin-bottom: 60px;
}

.panel-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.5px;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

.panel-subtitle {
    font-size: 18px;
    color: var(--gray);
    font-weight: 400;
}

.home-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.discord-card-home {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 64px 56px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.discord-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.discord-card-home:hover::before {
    opacity: 1;
}

.discord-card-home:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 16px 48px rgba(255, 51, 51, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.discord-card-home .discord-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--red);
}

.discord-card-home .discord-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-card-home .discord-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.3px;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

.discord-card-home .discord-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.6;
}

.discord-card-home .discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.discord-card-home .discord-btn:hover {
    background: var(--surface-light);
    color: var(--red);
    border: 1px solid var(--red);
    transform: translateY(-2px);
}

.discord-card-home .discord-btn svg {
    transition: transform 0.3s;
}

.discord-card-home .discord-btn:hover svg {
    transform: translateX(5px);
}

.discord-card-home .discord-url {
    font-size: 14px;
    color: var(--gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 12px 40px rgba(255, 51, 51, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: 12px;
    color: var(--red);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}


.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.owner-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.owner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.owner-card:hover::before {
    opacity: 1;
}

.owner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 16px 48px rgba(255, 51, 51, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.card-image-area {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.image-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 3px;
    background: var(--red);
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--surface);
    z-index: 1;
}

.owner-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.card-info {
    text-align: center;
}

.card-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -0.3px;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

.card-role {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.card-link:hover {
    background: var(--surface-light);
    color: var(--red);
    border: 1px solid var(--red);
    transform: translateY(-2px);
}

.card-link svg {
    transition: transform 0.3s;
}

.card-link:hover svg {
    transform: translate(3px, -3px);
}

.card-url {
    font-size: 13px;
    color: var(--gray);
    word-break: break-all;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 12px 40px rgba(255, 51, 51, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 16px 48px rgba(255, 51, 51, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.partner-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.partner-image-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 3px;
    background: var(--red);
    position: relative;
}

.partner-image-frame::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--surface);
    z-index: 1;
}

.partner-logo-round {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.partner-logo {
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
}

.partner-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.3px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.partner-link:hover {
    background: var(--surface-light);
    color: var(--red);
    border: 1px solid var(--red);
    transform: translateY(-2px);
}

.partner-link svg {
    transition: transform 0.3s;
}

.partner-link:hover svg {
    transform: translateX(3px);
}

.partner-url {
    font-size: 13px;
    color: var(--gray);
    word-break: break-all;
}

.discord-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.discord-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 64px 56px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.discord-card:hover::before {
    opacity: 1;
}

.discord-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 16px 48px rgba(255, 51, 51, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.discord-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--red);
}

.discord-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.3px;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

.discord-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.6;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.discord-btn:hover {
    background: var(--surface-light);
    color: var(--red);
    border: 1px solid var(--red);
    transform: translateY(-2px);
}

.discord-btn svg {
    transition: transform 0.3s;
}

.discord-btn:hover svg {
    transform: translateX(5px);
}

.discord-url {
    font-size: 14px;
    color: var(--gray);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 12px 40px rgba(255, 51, 51, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.about-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--red);
}

.about-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.site-footer {
    background: transparent;
    padding: 32px 30px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-tabs {
        width: 100%;
        justify-content: center;
    }

    .main-section {
        padding: 50px 20px;
    }

    .panel-title {
        font-size: 40px;
    }

    .owners-grid,
    .services-grid,
    .feature-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .discord-card {
        padding: 48px 32px;
    }

    .discord-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}
