@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'DelaGothicOne';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/DelaGothicOne-Regular.ttf') format('truetype');
}

:root {
    --primary-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-gold: #fbbf24;
    --dark-bg: #0f172a;
    --card-bg: rgba(15, 23, 42, 0.6);
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
}

body {
    width: 1920px;
    margin: 0 auto;
    background-color: #020617;
    color: var(--text-light);
    font-family: 'MiSans', sans-serif;
    overflow-x: hidden;
}

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

/* Header */
.site2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 1920px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site2-header .logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.site2-header nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site2-header nav a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: color 0.3s, text-shadow 0.3s;
}

.site2-header nav a:hover {
    color: var(--theme-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.site2-header .account-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color));
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.site2-header .account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Dropdowns Nav */
.site2-header nav ul li {
    position: relative;
}

.site2-header nav ul li.has-dropdown > a {
    display: flex;
    align-items: center;

}

.site2-header nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.site2-header nav ul li .dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(59, 130, 246, 0.3);
}

.site2-header nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.site2-header nav ul li .dropdown li {
    list-style: none;
}

.site2-header nav ul li .dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-dim);
    transition: all 0.2s;
    white-space: nowrap;
}

.site2-header nav ul li .dropdown li a:hover {
    color: var(--theme-color);
    background: rgba(59, 130, 246, 0.1);
    padding-left: 25px;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-dropdown .account-btn {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-dropdown .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1001;
    list-style: none;
}

.account-dropdown .dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(59, 130, 246, 0.3);
}

.account-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.account-dropdown .dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.2s;
}

.account-dropdown .dropdown li a:hover {
    color: var(--theme-color);
    background: rgba(59, 130, 246, 0.1);
}

.account-dropdown .dropdown li a i {
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 900px;
    background-image: url('../img/bg-footer.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2,6,23,0.3), rgba(2,6,23,0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--theme-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 120px;
    line-height: 1.1;
    background: linear-gradient(180deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: zoomIn 1.2s ease-out;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: white; 
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
    letter-spacing: 2px;
    gap: 15px;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
    background: linear-gradient(90deg, #1c536b, var(--theme-color));
    color: white;
}

/* Features Section */
.features {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #020617;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 20;
    margin-top: -100px;
}

.card {
    position: relative;
    width: 450px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-20px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

.card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.card img {
    width: 120%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:nth-child(1) img {
    width: 100%;
    transform: translateY(-50px);
}
.card:nth-child(2) img {
    width: 100%;
    transform: translateY(-30px) scale(1.1);
}
.card:nth-child(3) img {
    width: 90%;
    transform: translateY(-20px);
}

.card:hover img {
    transform: scale(1.1) translateY(-60px);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: linear-gradient(to top, #020617 20%, transparent);
    width: 100%;
    padding: 40px 20px 20px;
}

.card-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

.card-subtitle {
    font-size: 16px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Community Section */
.community {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.section-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
    color: white;
}

.section-subtitle {
    font-size: 20px;
    color: var(--theme-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.discord-widget {
    width: 1000px;
    height: 300px;
    background: #5865F2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
}

.discord-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-footer.jpg');
    opacity: 0.1;
    background-size: cover;
}

.discord-info {
    position: relative;
    z-index: 2;
    text-align: left;
}

.discord-info h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.discord-info p {
    font-size: 18px;
    opacity: 0.9;
    color: white;
}

.discord-btn {
    position: relative;
    z-index: 2;
    background: white;
    color: #5865F2;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.discord-btn:hover {
    transform: scale(1.05);
    color: #5865F2;
}

/* Stats Section */
.stats {
    width: 100%;
    padding: 80px 0;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 40px;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 48px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    padding: 25px 0 ;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Footer */
.site2-footer {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('../img/bg-footer.jpg');
    background-size: cover;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.site2-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #020617 0%, rgba(2,6,23,0.8) 20%, rgba(2,6,23,0.4) 100%);
}

.footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.footer-logo img {
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.footer-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
    border-color: var(--theme-color);
}

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

.footer-copyright {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.footer-url {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 24px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
