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

body {
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    background: #000;
}

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

a:hover {
    color: white;
}

.container {
    max-width: 70vw !important;
    margin: 0 auto !important;
    width: 100% !important;
}



.config-maker-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

.config-maker-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    background: linear-gradient(135deg, #3C37F1, #5752FF);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-gradient {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mode-card {
    position: relative;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.beginner-card {
    animation-delay: 0.1s;
}

.advanced-card {
    animation-delay: 0.2s;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(0, 0, 0, 0.50);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #3C37F1, #5752FF);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 30px;
}

/* ===========================
   Features List
   =========================== */
.features-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    color: #3C37F1;
    flex-shrink: 0;
}


.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

.primary-button {
    background: linear-gradient(135deg, rgba(60, 55, 241, 0.45), rgba(87, 82, 255, 0.45));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(60, 55, 241, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 20px rgba(60, 55, 241, 0.4);
}

.secondary-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.button-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.card-button:hover .button-arrow {
    transform: translateX(4px);
}


.info-banner {
    background: rgba(0, 0, 0, 0.50);
    border: 1px solid rgba(60, 55, 241, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease 0.3s both;
}

.info-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(60, 55, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #3C37F1;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.info-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.recent-configs {
    padding: 100px 0;
    background: linear-gradient(-180deg, #000 0%, #0e0e0e 100%);
}

.recent-configs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.config-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.config-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.config-card-header {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

.config-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.config-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3C37F1, #5752FF);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.config-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.config-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-icon {
    width: 16px;
    height: 16px;
}

.config-specs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.config-card-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-config {
    color: #3C37F1;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.config-card:hover .view-config {
    color: #5752FF;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablets */
@media screen and (max-width: 1024px) {
    .config-maker-wrapper {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .modes-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .stats-section {
        margin-top: 60px;
    }

    .recent-configs-wrapper {
        padding: 0 30px;
    }

    .configs-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 768px) {
    .config-maker-wrapper {
        padding: 40px 15px;
    }

    .hero-section {
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .mode-card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .info-banner {
        padding: 25px;
        margin-bottom: 40px;
    }

    .info-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .recent-configs {
        padding: 60px 0;
    }

    .recent-configs-wrapper {
        padding: 0 20px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .configs-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 16px;
    }

    .config-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .config-maker-wrapper {
        padding: 30px 10px;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .badge-text {
        font-size: 10px;
        padding: 4px 12px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .modes-grid {
        gap: 20px;
    }

    .mode-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .card-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .features-list {
        margin-bottom: 25px;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .card-button {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .info-banner {
        padding: 20px;
        border-radius: 12px;
    }

    .info-text h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .info-text p {
        font-size: 0.95rem;
    }

    .stats-section {
        margin-top: 40px;
        padding-top: 25px;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .recent-configs {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .config-card {
        border-radius: 12px;
    }

    .config-card-header {
        height: 150px;
        padding: 15px;
    }

    .config-price-badge {
        top: 10px;
        right: 10px;
        font-size: 0.85rem;
        padding: 5px 10px;
    }

    .config-card-body {
        padding: 20px;
    }

    .config-author {
        font-size: 0.85rem;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    .view-config {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .mode-card {
        padding: 20px 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .card-button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Mobile specific background adjustment */
@media screen and (max-width: 767px) {

}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mode-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .config-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .particle {
        display: none;
    }
}