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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: #111;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #ccc;
    border-bottom-color: #fff;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.hero-image {
    text-align: center;
}

.character-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #111;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: #222;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #555;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: #000;
}

.portfolio h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background-color: #111;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.portfolio-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.portfolio-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.platform-tag {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Services Page */
.services-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.services-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

.services-content {
    padding: 80px 0;
    background-color: #000;
}

.service-category {
    margin-bottom: 4rem;
    background-color: #111;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #333;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-header p {
    font-size: 1.1rem;
    color: #ccc;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: #222;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.pricing-info {
    padding: 80px 0;
    background-color: #111;
    text-align: center;
}

.pricing-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-info p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

.contact-content {
    padding: 80px 0;
    background-color: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-feature p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0;
}

.discord-login {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.login-card {
    background-color: #111;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #333;
    text-align: center;
    width: 100%;
}

.login-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.login-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-discord {
    background-color: #5865F2;
    color: #fff;
    border-color: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.btn-discord:hover {
    background-color: #4752C4;
    border-color: #4752C4;
    color: #fff;
}

.login-info p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0;
}

/* Success Page */
.success-content {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.success-card {
    background-color: #111;
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    max-width: 600px;
}

.success-card h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #4CAF50;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.user-info {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid #333;
}

.success-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 2rem 0;
    border-top: 2px solid #333;
    text-align: center;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features h2,
    .portfolio h2,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card,
    .portfolio-item {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .service-item {
        margin: 0;
        padding: 1.5rem;
        width: 100%;
        max-width: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-category {
        margin: 0 0 3rem 0;
        padding: 2rem 1.5rem;
        width: 100%;
    }
    
    .login-card {
        padding: 2rem;
    }
    
    .success-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card,
    .portfolio-item {
        margin: 0 5px;
        padding: 1.2rem;
    }
    
    .service-item {
        margin: 0;
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature-card h3,
    .portfolio-item h4,
    .service-item h4 {
        font-size: 1.2rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .login-card,
    .success-card {
        padding: 1.5rem;
    }
    
    .service-category {
        margin: 0 0 2rem 0;
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
}
