* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

a:focus, button:focus, input:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgba(0, 230, 250, 0.3) !important;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

.placeholder-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(0, 230, 250, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.overlay-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(0, 230, 250, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.overlay-placeholder h3 {
    margin-bottom: 1rem;
    color: #00e6fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 230, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 230, 250, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    outline: none;
    border: none;
}

.nav-link:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.nav-link:hover {
    color: #00e6fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.discord-link {
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    padding: 8px 16px;
    border-radius: 6px;
    color: #ffffff !important;
}

.discord-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 230, 250, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 230, 250, 0.1);
    border: 1px solid rgba(0, 230, 250, 0.3);
    border-radius: 50px;
    color: #00e6fa;
    font-weight: 500;
    font-size: 0.9rem;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem;
}

.hero-image {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(0, 230, 250, 0.1),
        0 0 0 16px rgba(0, 230, 250, 0.05);
    background: linear-gradient(135deg, rgba(0, 230, 250, 0.1) 0%, rgba(0, 85, 254, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 50%, #00e6fa 100%);
    z-index: -1;
    animation: heroRotate 8s linear infinite;
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 230, 250, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 100%;
    min-height: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e6fa 0%, #0055fe 100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 230, 250, 0.2);
}

.stat-card h3 {
    color: #00e6fa;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.hero-partners {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 0;
}

.hero-partners p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.partners-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about {
    padding: 60px 0;
    position: relative;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text-centered {
    max-width: 1000px;
    text-align: center;
}

.about-mission,
.about-vision {
    margin-bottom: 1.5rem;
}

.about-mission h3,
.about-vision h3 {
    color: #00e6fa;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-mission p,
.about-vision p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-vision {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 230, 250, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 250, 0.2);
    border-color: rgba(0, 230, 250, 0.3);
}

.feature i {
    color: #00e6fa;
    font-size: 1.5rem;
    min-width: 30px;
}

.feature-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-icon {
    color: #00e6fa;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 30px;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.team {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 230, 250, 0.05) 100%);
}

.team-category {
    margin-bottom: 4rem;
}

.category-title {
    color: #00e6fa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.founder-single {
    display: flex;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.founder-single .team-member {
    max-width: 280px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 230, 250, 0.2);
}

.member-image {
    position: relative;
    margin-bottom: 1rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00e6fa;
    margin: 0 auto;
    display: block;
}

.member-social {
    margin-top: 0.5rem;
}

.social-link {
    color: #00e6fa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 230, 250, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    color: #00e6fa;
}

.service-icon i {
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #00e6fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

.overlays {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 85, 254, 0.05) 100%);
}

.overlays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.overlay-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.overlay-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 85, 254, 0.2);
}

.overlay-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay-card:hover .overlay-image img {
    transform: scale(1.05);
}

.overlay-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.overlay-card:hover .overlay-overlay {
    transform: translateY(0);
}

.overlay-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.overlay-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.creators {
    padding: 100px 0;
}

.creators-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.creators-text h3 {
    color: #00e6fa;
    margin-bottom: 1rem;
}

.creators-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.creators-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00e6fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.creators-visual {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.creators-slider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    display: flex;
    animation: slideCreators 20s linear infinite;
    gap: 2rem;
}

.creator-slide {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    position: relative;
}

.creator-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #00e6fa, #0055fe) padding-box, 
                linear-gradient(45deg, #00e6fa, #0055fe) border-box;
    animation: rotate 8s linear infinite;
    transition: transform 0.3s ease;
}

.creator-slide img:hover {
    transform: scale(1.1);
}

@keyframes slideCreators {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.creator-showcase img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.join {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 230, 250, 0.05) 100%);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.join-info h3 {
    color: #00e6fa;
    margin-bottom: 2rem;
}

.join-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.link {
    color: #00e6fa;
    text-decoration: none;
}

.link:hover {
    color: #ffffff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00e6fa;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

.join-visual {
    text-align: center;
    margin-top: 2rem;
}

.recruitment-guide {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 230, 250, 0.2);
    border: 2px solid rgba(0, 230, 250, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-guide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 230, 250, 0.3);
}

.join-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 0.8;
}

.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #00e6fa;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00e6fa;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-link {
    color: #00e6fa;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(0, 230, 250, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 230, 250, 0.3);
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: rgba(0, 230, 250, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-top {
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-2px);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .creators-content,
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-stats {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .creators-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .creator-slide {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 1024px) {
    .hero-image {
        width: 320px;
        height: 320px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-image {
        width: 280px;
        height: 280px;
    }
    
    .hero-visual {
        min-height: 400px;
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        min-width: auto;
        padding: 1.5rem 1rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        min-width: 150px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid,
    .overlays-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .creators-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .creator-slide {
        width: 80px;
        height: 80px;
    }
    
    .slider-container {
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 30px;
    }
    
    .about,
    .team,
    .services,
    .overlays,
    .creators,
    .join {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-image img {
        width: 100px;
        height: 100px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: #00e6fa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 230, 250, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #00e6fa;
}

.faq-icon {
    color: #00e6fa;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer.active {
    display: block;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: #00e6fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #0055fe;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
    }
}

.backoffice-dashboard {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.dashboard-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00e6fa;
    box-shadow: 0 0 20px rgba(0, 230, 250, 0.3);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.user-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-rookie {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.join-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.refresh-btn {
    margin-left: auto;
}

.dashboard-stats {
    margin-bottom: 3rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e6fa 0%, #0055fe 100%);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 230, 250, 0.2);
    border-color: rgba(0, 230, 250, 0.3);
}

.dashboard-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00e6fa 0%, #0055fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dashboard-card .stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.dashboard-card .stat-content h3 {
    color: #00e6fa;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    font-weight: 800;
    word-break: break-word;
}

.dashboard-card .stat-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.change-positive {
    color: #28a745;
    font-weight: 600;
}

.change-negative {
    color: #dc3545;
    font-weight: 600;
}

.change-neutral {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.dashboard-content {
    margin-top: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    color: #00e6fa;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header i {
    font-size: 1.2rem;
}

.card-content {
    color: rgba(255, 255, 255, 0.8);
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.detail-value {
    font-weight: 600;
    color: #ffffff;
}

.performance-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.perf-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.perf-icon.positive {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.perf-icon.neutral {
    background: rgba(0, 230, 250, 0.2);
    color: #00e6fa;
}

.perf-icon.info {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.perf-content h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.perf-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 230, 250, 0.3);
}

.resource-item i {
    color: #00e6fa;
    font-size: 1.3rem;
    min-width: 25px;
}

.resource-item span {
    flex: 1;
    color: #ffffff;
    font-weight: 500;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.support-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 230, 250, 0.3);
    transform: translateY(-2px);
}

.support-option i {
    color: #00e6fa;
    font-size: 1.5rem;
    min-width: 30px;
}

.support-option h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.support-option p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.error-message {
    margin: 2rem 0;
    text-align: center;
}

.error-message .dashboard-card {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
}

.error-message h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}


@media (min-width: 1400px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto 3rem auto;
    }
    
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
    
    .dashboard-header {
        max-width: 1400px;
        margin: 0 auto 3rem auto;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto 3rem auto;
    }
    
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .backoffice-dashboard {
        padding: 100px 0 40px;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .user-welcome {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .user-info h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .user-status {
        justify-content: center;
    }
    
    .dashboard-card .stat-content h3 {
        font-size: 1.8rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .resource-item,
    .support-option {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .perf-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-card .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
    }
    
    .user-info h1 {
        font-size: 1.3rem;
    }
    
    .dashboard-card {
        padding: 1rem;
        min-height: 160px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .user-status {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dashboard-header {
        margin-bottom: 2rem;
    }
    
    .refresh-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
}
