:root {
    --black: #000000;
    --gray-900: #0a0a0a;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-400: #9ca3af;
    --white: #ffffff;
    --orange: #f59e0b;
    --gradient: linear-gradient(135deg, #f59e0b, #d97706);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}
a {
    text-decoration: none;
}

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

.warning-bar {
    background: #f97316;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    overflow: hidden;
}

.warning-bar .scroll-container {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.warning-bar p {
    font-size: 12px;
    color: #fff7e7;
    font-weight: 600;
    display: inline-block;
    padding: 0 50px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.header {
    position: relative;
    width: 100%;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    margin-top: 80px;
}

.verify-page .header {
    margin-top: 80px;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header .logo {
    display: none;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 25px;
    margin-left: 10px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-banner {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px 50px;
    position: relative;
    background: transparent;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 30px 40px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-banner-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.1) 30%, rgba(245, 158, 11, 0.05) 60%, transparent 100%);
    pointer-events: none;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight-orange {
    color: #f59e0b;
}

.hero-subtitle {
    margin: auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    max-width: 800px;
}

.hero-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.hero-btn {
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.verify-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px 60px;
    position: relative;
}

.packaging-section {
    width: 100%;
    max-width: 1400px;
    margin-top: 80px;
    padding: 60px 20px;
}

.packaging-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
}

.packaging-title .highlight {
    color: #f59e0b;
}

.packaging-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.packaging-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}

.packaging-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 280px;
    margin-right: 20px;
}

.packaging-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 294px;
    margin-left: 20px;
}

.packaging-left .packaging-card {
    flex: 1;
}

.packaging-right .packaging-card {
    flex: 1;
}

.packaging-right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.packaging-right-panel-mobile {
    display: none;
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.packaging-showcase-mobile {
    display: none;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.packaging-showcase-mobile .showcase-box {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.15);
}

.packaging-showcase-mobile .showcase-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packaging-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.packaging-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 16px;
}

.packaging-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.packaging-card p {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.6;
}

.packaging-showcase {
    position: relative;
    width: 480px;
    height: 480px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.15);
    flex-shrink: 0;
}

.showcase-title {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 8px;
}

.showcase-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    text-align: center;
}

.showcase-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.showcase-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.showcase-stamp {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.showcase-stamp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-url {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 600;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    z-index: 1;
    padding: 30px;
}

.right-alluvi {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.right-stamp {
    width: 100px;
    height: 100px;
}

.right-stamp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-number {
    font-size: 28px;
    font-weight: 300;
    color: var(--gray-400);
    letter-spacing: 6px;
}

.verify-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.verify-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 500px;
}

.verify-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    padding-left: 20px;
}

.verify-form {
    width: 100%;
    max-width: 500px;
}

.verify-input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-prefix {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff8200;
    font-size: 16px;
    pointer-events: none;
}

.verify-input {
    width: 100%;
    padding: 20px 140px 20px 48px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.verify-input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.verify-input::placeholder {
    color: var(--gray-400);
}

.verify-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: linear-gradient(135deg, #e27e14, #ff8200);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: normal;
}

.verify-btn:hover {
    background: linear-gradient(135deg, #e27e14, #eb9a44);
}

.verify-btn:active {
    transform: translateY(0);
}

.verify-result {
    margin-top: 40px;
    padding: 30px;
    border-radius: 12px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.verify-result.visible {
    display: block;
}

.verify-result.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.verify-result.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.result-text {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
}

.result-product {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: left;
}

.result-product p {
    font-size: 14px;
    margin-bottom: 8px;
}

.result-product p:last-child {
    margin-bottom: 0;
}

.result-product .label {
    color: var(--gray-400);
}

.result-product .value {
    color: var(--white);
    font-weight: 600;
}

.result-chat-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: linear-gradient(135deg, #e27e14, #ff8200);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.result-chat-btn:hover {
    background: linear-gradient(135deg, #e27e14, #eb9a44);
}

.result-chat-btn::before {
    content: '💬';
    font-size: 16px;
}

.verify-info {
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 800px;
}

.verify-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.verify-info ul {
    list-style: none;
    text-align: left;
}

.verify-info li {
    font-size: 14px;
    color: var(--gray-400);
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
}

.verify-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.highlight-gradient {
    background: linear-gradient(90deg, #d97706, #ea580c, #fb923c, #fda4af, #c4b5fd, #a5b4fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verify-cta {
    width: 100%;
    padding: 60px 20px;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 50px;
    background: linear-gradient(180deg, #211609 20%, #000000 100%);
    border-radius: 16px;
    text-align: center;
    border: 2px solid #502204;
    box-shadow: 0 4px 30px rgba(68, 13, 13, 0.5);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-highlight {
    color: #f59e0b;
}

.cta-text {
    font-size: 14px;
    color: #9ca3af;
    line-height: 2;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-line;
}

.cta-btn {
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(180deg, #ff9500 0%, #e27e14 50%, #d97706 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(180deg, #ffa726 0%, #e27e14 50%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    transform: translateY(-1px);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.footer {
    background: #000000;
    padding: 40px 20px;
    text-align: center;
}

.footer .container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 14px;
    color: #f59e0b;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fbbf24;
}

@media (max-width: 1200px) {
    .packaging-content {
        gap: 15px;
    }
    .packaging-showcase {
        width: 380px;
        height: 380px;
    }
    .packaging-left,
    .packaging-right {
        width: 240px;
    }
}

@media (max-width: 992px) {
    .packaging-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    .packaging-left,
    .packaging-right {
        width: 45%;
    }
    .packaging-showcase {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .warning-bar {
        padding: 6px 0;
    }

    .warning-bar p {
        font-size: 10px;
        padding: 0 30px;
    }

    .warning-bar .scroll-container {
        animation-duration: 20s;
    }

    .header {
        top: 20px;
        padding: 10px 0;
    }

    .logo-text {
        font-size: 14px;
    }

    .nav-wrapper {
        padding: 8px 12px;
        gap: 10px;
    }

    .logo-container {
        padding-right: 10px;
    }

    .nav {
        display: flex;
        gap: 12px;
        margin-left: 5px;
    }

    .nav a {
        font-size: 16px;
    }

    .hero-banner {
        padding: 50px 20px 40px;
        min-height: 300px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hero-description {
        font-size: 12px;
    }
    .hero-btn {
        padding: 12px 28px;
        font-size: 12px;
    }
    
    .packaging-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .packaging-left,
    .packaging-right {
        width: 100%;
        max-width: 400px;
        margin: 0;
    }
    .packaging-showcase {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }
    .verify-title {
        font-size: 32px;
    }
    .verify-subtitle {
        font-size: 16px;
    }
    .verify-input {
        padding: 16px 100px 16px 40px;
    }
    .verify-btn {
        width: 70px;
        padding: 10px 16px;
        font-size: 12px;
    }
    .verify-info {
        padding: 20px;
    }
    .packaging-card {
        padding: 16px;
    }
    .packaging-right-panel {
        display: none;
    }
    .packaging-right-panel-mobile {
        display: block;
    }
    .packaging-showcase {
        display: none;
    }
    .packaging-showcase-mobile {
        display: block;
    }
    .packaging-section {
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .warning-bar p {
        font-size: 9px;
    }

    .header {
        top: 0px;
    }

    .logo-text {
        font-size: 10px;
    }

    .nav-wrapper {
        padding: 6px 10px;
        gap: 8px;
    }

    .logo-container {
        padding-right: 8px;
    }

    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 10px;
    }

    .hero-banner {
        padding: 50px 15px 30px;
    }
    .hero-title {
        font-size: 28px;
    }
    .verify-hero {
        padding: 40px 20px;
    }
    .verify-title {
        font-size: 28px;
    }
    .verify-subtitle {
        font-size: 14px;
    }
    .packaging-showcase {
        border-radius: 12px;
    }
}