/* bitgetcharge.goksan.co.kr - Premium Landing Page */
/* Orange Theme with Glass Morphism */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --orange-50: #FFF7ED;
    --orange-100: #FFEDD5;
    --orange-200: #FED7AA;
    --orange-300: #FDBA74;
    --orange-400: #FB923C;
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --orange-700: #C2410C;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #FFFFFF;
    --gradient-orange: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #C2410C 100%);
    --gradient-light: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
    --gradient-glow: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, rgba(234,88,12,0.1) 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-orange: 0 8px 30px rgba(249,115,22,0.25);
    --shadow-orange-lg: 0 15px 50px rgba(249,115,22,0.3);
}

/* Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-light);
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Decorative Background Blobs */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251,146,60,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography */
h1, h2, h3, h4, h5, h6, p, a, li, span, div, th, td, label, input, textarea, button {
    font-family: 'Poppins', sans-serif;
}

/* Page Title */
h1.wp-block-post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 3rem auto 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
}

h1.wp-block-post-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    margin: 1rem auto 0;
    border-radius: 2px;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin: 3rem 0 1.25rem;
    letter-spacing: -0.02em;
    position: relative;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 1.5rem 0 0.75rem;
}

p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem !important;
    color: var(--gray-600) !important;
    text-align: center;
    max-width: 700px;
    margin: -0.5rem auto 2.5rem !important;
    font-weight: 400;
}

/* Links */
a {
    color: var(--orange-500);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--orange-600);
}

/* Header */
header,
.wp-block-template-part {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249,115,22,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Site Title */
.wp-block-site-title a {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.wp-block-navigation-item__content {
    color: var(--gray-600) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wp-block-navigation-item__content:hover {
    color: var(--orange-500) !important;
    background: var(--orange-50);
}

/* Buttons - Gradient Fill with Glow */
.wp-block-button__link {
    background: var(--gradient-orange) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 1rem 2.25rem !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-orange);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wp-block-button__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-orange-lg);
}

.wp-block-button__link:hover::before {
    left: 100%;
}

/* Hero CTA */
.hero-cta {
    margin: 2rem 0 3rem;
}

.hero-cta .wp-block-button__link {
    padding: 1.125rem 3rem !important;
    font-size: 1.0625rem;
}

/* Glass Cards */
.benefit-card,
.wp-block-column {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249,115,22,0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before,
.benefits-section .wp-block-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before,
.benefits-section .wp-block-column:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover,
.benefits-section .wp-block-column:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-200);
    background: rgba(255,255,255,0.9);
}

.benefit-card h3,
.benefits-section .wp-block-column h3 {
    color: var(--orange-600);
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Benefits Section */
.benefits-section {
    gap: 1.5rem;
    margin: 2.5rem 0;
}

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

.wp-block-columns .wp-block-column {
    animation: fadeInUp 0.6s ease-out both;
}

.wp-block-columns .wp-block-column:nth-child(1) { animation-delay: 0.1s; }
.wp-block-columns .wp-block-column:nth-child(2) { animation-delay: 0.2s; }
.wp-block-columns .wp-block-column:nth-child(3) { animation-delay: 0.3s; }

/* Blog Posts */
.wp-block-post {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.wp-block-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-200);
}

.wp-block-post-title a {
    color: var(--gray-900) !important;
    font-weight: 600;
    font-size: 1.375rem;
    transition: color 0.3s ease;
}

.wp-block-post-title a:hover {
    color: var(--orange-500) !important;
}

.wp-block-post-date {
    display: inline-block;
    background: var(--orange-50);
    color: var(--orange-600);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
    padding: 3.5rem 2rem;
    background: var(--gradient-glow);
    border-radius: 32px;
    text-align: center;
    border: 1px solid rgba(249,115,22,0.15);
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

th {
    background: var(--gradient-orange);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.9375rem;
}

td {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--orange-50);
}

/* Lists */
ul, ol {
    color: var(--gray-600);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    position: relative;
}

li strong {
    color: var(--gray-900);
}

ul li::marker {
    color: var(--orange-500);
}

/* Contact Form */
.wpcf7-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-100);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--gray-900);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}

.wpcf7-form input[type="submit"] {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-lg);
}

.wpcf7-form label {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Separator */
hr, .wp-block-separator {
    border: none;
    height: 2px;
    background: var(--gradient-orange);
    margin: 3rem auto;
    max-width: 100px;
    border-radius: 1px;
    opacity: 0.3;
}

/* Blockquote */
blockquote {
    background: var(--gradient-glow);
    border-left: 4px solid var(--orange-500);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--gray-700);
}

/* Images */
.wp-block-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

/* Strong */
strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    margin-top: 4rem;
    padding: 2rem 0;
}

/* Spacer */
.wp-block-spacer {
    margin: 0 !important;
}

/* Content Width */
.wp-block-group,
.entry-content,
.wp-block-post-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1.wp-block-post-title {
        margin: 2rem auto 1rem;
    }

    h1.wp-block-post-title::after {
        width: 60px;
        height: 3px;
    }

    .hero-subtitle {
        font-size: 1.0625rem !important;
    }

    .benefit-card,
    .wp-block-column {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .wp-block-button__link {
        padding: 0.875rem 1.75rem !important;
        font-size: 0.9375rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.75rem 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    body::before, body::after {
        animation: none;
    }
}

/* Selection */
::selection {
    background: var(--orange-500);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--orange-50);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-600);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--orange-500);
    outline-offset: 2px;
}
