@font-face {
    font-family: 'SpoqaHanSansNeo-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SpoqaHanSansNeo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 107, 0, 0.1);
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-btn {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: #ff8500;
}

.nav-btn {
    background: transparent;
    color: #ff6b00;
    border: 1px solid #ff6b00;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ff6b00;
    color: #fff;
}

.nav-btn.active {
    background: #ff6b00;
    color: #fff;
    font-weight: bold;
}

.login-btn {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #ff8500;
}

main {
    flex: 1;
    display: block;
    padding: 0;
}

header {
    margin-bottom: 0;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    font-family: 'SpoqaHanSansNeo-Regular', sans-serif;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
}

.logo-text .shorts {
    color: #ff6b00;
}

.logo-text .craft {
    color: #ffffff;
}

.tagline {
    font-size: 12px;
    color: #888;
    font-weight: 300;
    margin-left: 10px;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px 30px;
}

.welcome-message {
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.welcome-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff6b00;
}

.welcome-message p {
    color: #ccc;
    font-size: 16px;
}

.hero-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 20px;
    color: #bbb;
    font-weight: 300;
}

/* Login Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #111;
    margin: 15% auto;
    padding: 40px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.close:hover {
    color: #ff6b00;
}

.modal-content h2 {
    color: #ff6b00;
    margin-bottom: 20px;
    font-size: 24px;
}

.modal-content p {
    margin-bottom: 30px;
    color: #ccc;
}

.terms-text {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

.terms-text a {
    color: #ff6b00;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}


.google-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.google-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.google-login-btn:hover::before {
    transform: translateX(100%);
}

.google-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5);
}

.google-icon {
    width: 24px;
    height: 24px;
}

/* Navigation */
.nav-link {
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b00;
}

/* Hero Section Styles */
.hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-primary {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #ff8500;
    transform: translateY(-2px);
}

.cta-primary.large {
    padding: 20px 60px;
    font-size: 20px;
}

.cta-secondary {
    background: transparent;
    color: #ff6b00;
    border: 2px solid #ff6b00;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ff6b00;
    color: #fff;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #ff6b00;
    margin-bottom: 5px;
}

.stat-label {
    color: #aaa;
    font-size: 14px;
}

/* Features Section */
.features-section {
    display: block;
    padding: 40px 40px 60px;
    background: rgba(255, 107, 0, 0.05);
    text-align: center;
    width: 100%;
}

.features-section h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ff6b00;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* How it works */
.how-it-works {
    display: block;
    padding: 80px 40px;
    text-align: center;
    width: 100%;
}

.how-it-works h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: #aaa;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    display: block;
    padding: 80px 40px;
    text-align: center;
    background: rgba(255, 107, 0, 0.1);
    width: 100%;
}

.cta-section h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 40px;
    text-align: center;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.success-stories h2 {
    font-size: 36px;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.story-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author {
    color: #ff6b00;
    font-size: 16px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.faq-item h3 {
    color: #ff6b00;
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 40px;
    text-align: center;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.blog-preview h2 {
    font-size: 36px;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.blog-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff9500;
}

.blog-cta {
    margin-top: 40px;
}

.view-all-posts {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.view-all-posts:hover {
    background: #ff6b00;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info {
    margin-bottom: 30px;
}

.company-info h4 {
    color: #ff6b00;
    font-size: 20px;
    margin-bottom: 15px;
}

.company-info p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin: 5px 0;
}

.footer-links {
    margin: 20px 0;
}
.footer-links a.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.footer-links a.footer-link:hover {
    color: #ff6b00;
}
.footer-links .separator {
    color: #666;
}
.footer-bottom p {
    color: #666;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }
    
    .nav-center {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
    }
}

/* Remove old login section animation */

@media (max-width: 768px) {
    .logo {
        font-size: 36px;
    }
    
    .hero-section h2 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .login-section {
        padding: 30px 20px;
    }
    
    .google-login-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
}