* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Black Mustang';
    src: url('fonts/Black Mustang.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --gold-dark: #6e5732;
    --gold-light: #b69856;
    --black: #151515;
    --dark-gray: #1f1f1f;
    --light-gray: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--black);
    color: black;
    min-height: 100vh;
}

/* Header */
header {
    background: var(--dark-gray);
    border-bottom: 2px solid var(--gold-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    cursor: pointer;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.tagline {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

/* Academy Advertisement */
.academy-ad {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(193, 162, 91, 0.1) 0%, rgba(105, 82, 47, 0.1) 100%);
    border: 2px solid var(--gold-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(182, 152, 86, 0.2);
}

.academy-ad:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(193, 162, 91, 0.2) 0%, rgba(105, 82, 47, 0.2) 100%);
    box-shadow: 0 8px 25px rgba(182, 152, 86, 0.4);
}

.academy-logo {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.academy-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.academy-cta {
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.academy-price {
    background: linear-gradient(45deg, #C1A25B, #69522F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Hero Section */
.hero {
    padding: 40px 20px 40px;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero h1 .gradient-text {
    background: linear-gradient(45deg, #C1A25B, #69522F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.5;
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-light);
    position: relative;
}

.hero-video::before {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 48px;
    color: var(--gold-light);
    opacity: 0.7;
}

.video-placeholder-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 14px;
    text-align: center;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 20px 60px;
}

/* Analyzer Card */
.analyzer-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.6s ease;
}

.analyzer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(182, 152, 86, 0.35);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 2px solid #f5f5f5;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(182, 152, 86, 0.4);
    line-height: 1;
    text-align: center;
}

.card-icon i {
    color: white;
}

.card-info h2 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.card-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
}

.form-select {
    cursor: pointer;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(182, 152, 86, 0.1);
}

.form-input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #999;
}

/* On/Off Market Switch */
.market-switch-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--gold-light);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.analyze-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(182, 152, 86, 0.3);
    margin-top: 10px;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(182, 152, 86, 0.4);
}

.analyze-btn:active {
    transform: translateY(0);
}

/* Result Styles */
.result {
    margin-top: 30px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result.yes {
    background: #d4edda;
    border: 3px solid #28a745;
}

.result.no {
    background: #f8d7da;
    border: 3px solid #dc3545;
}

.result.maybe {
    background: #fff3cd;
    border: 3px solid #ffc107;
}

.result h3 {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 12px;
}

.result.yes h3 {
    color: #155724;
}

.result.no h3 {
    color: #721c24;
}

.result.maybe h3 {
    color: #856404;
}

.result-message {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.result.yes .result-message {
    color: #155724;
}

.result.no .result-message {
    color: #721c24;
}

.result.maybe .result-message {
    color: #856404;
}

.result-details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
}

.result.yes .detail-label,
.result.yes .detail-value {
    color: #155724;
}

.result.no .detail-label,
.result.no .detail-value {
    color: #721c24;
}

.result.maybe .detail-label,
.result.maybe .detail-value {
    color: #856404;
}

.result-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    color: black;
}

.result-note ul {
    list-style-position: inside;
    padding-left: 0;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background: var(--dark-gray);
    border-top: 2px solid var(--gold-light);
    margin-top: 50px;
}

.footer-ad-section {
    background: linear-gradient(135deg, #1a1410 0%, #2a1f15 100%);
    padding: 60px 20px;
    border-bottom: 1px solid rgba(193, 162, 91, 0.2);
}

.footer-ad-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-ad-left {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.footer-academy-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(182, 152, 86, 0.4);
    border: 2px solid var(--gold-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-academy-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(182, 152, 86, 0.6);
}

.footer-ad-text {
    flex: 1;
}

.footer-ad-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(45deg, #C1A25B, #69522F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-ad-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.feature-icon {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 18px;
}

.footer-ad-right {
    display: flex;
    justify-content: center;
}

.footer-cta-box {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(182, 152, 86, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 350px;
}

.footer-price-tag {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-price-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-price {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.footer-price-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-cta-btn {
    display: block;
    background: white;
    color: var(--gold-dark);
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: #f8f8f8;
}

.footer-guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-bottom {
    padding: 30px 20px;
    text-align: center;
    background: var(--dark-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    color: #999;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .logo {
        height: 40px;
    }

    .academy-ad {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .analyzer-card {
        padding: 24px 18px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-info h2 {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .result h3 {
        font-size: 24px;
    }

    .detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .footer-ad-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-ad-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-academy-logo {
        width: 50px;
        height: 50px;
    }

    .footer-ad-title {
        font-size: 24px;
    }

    .footer-features {
        grid-template-columns: 1fr;
    }

    .footer-cta-box {
        max-width: 100%;
    }
}
/* Notification styles */
.clipboard-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-light);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1001;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
}

.clipboard-notification.show {
    opacity: 1;
    top: 30px;
}

.dispo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.dispo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.dispo-btn img {
    height: 24px;
    width: auto;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: black;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-icon {
    font-size: 48px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.modal-message {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
}