/**
 * Bug Bounty Page Styles
 * Cyber-themed styling for the security bug bounty program
 */

/* Page Container */
.bounty-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.bounty-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    min-height: 60vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid var(--accent-cyan, #00cfff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-cyan, #00cfff);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: #fff;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-reward {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1) 0%, rgba(196, 255, 0, 0.1) 100%);
    border: 2px solid var(--accent-lime, #c4ff00);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.reward-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.reward-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-lime, #c4ff00);
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent-cyan, #00cfff);
    color: var(--accent-cyan, #00cfff);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 207, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 207, 255, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(0, 207, 255, 0.5);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 207, 255, 0.7);
    animation-delay: 1s;
}

.shield-icon {
    font-size: 5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

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

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 207, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(0, 207, 255, 0.8));
    }
}

/* Stats Section */
.bounty-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-cyan, #00cfff);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan, #00cfff);
    margin-bottom: 0.25rem;
}

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

/* Reward Tiers */
.bounty-rewards {
    padding: 4rem 0;
}

.reward-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.reward-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.reward-card.critical::before { background: linear-gradient(90deg, #ff4444 0%, #ff6666 100%); }
.reward-card.high::before { background: linear-gradient(90deg, #ff8800 0%, #ffaa44 100%); }
.reward-card.medium::before { background: linear-gradient(90deg, #ffcc00 0%, #ffdd44 100%); }
.reward-card.low::before { background: linear-gradient(90deg, #44cc44 0%, #66dd66 100%); }

.reward-card.critical { border: 1px solid rgba(255, 68, 68, 0.3); }
.reward-card.high { border: 1px solid rgba(255, 136, 0, 0.3); }
.reward-card.medium { border: 1px solid rgba(255, 204, 0, 0.3); }
.reward-card.low { border: 1px solid rgba(68, 204, 68, 0.3); }

.reward-card:hover {
    transform: translateY(-5px);
}

.reward-card.critical:hover { border-color: #ff4444; box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2); }
.reward-card.high:hover { border-color: #ff8800; box-shadow: 0 10px 30px rgba(255, 136, 0, 0.2); }
.reward-card.medium:hover { border-color: #ffcc00; box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2); }
.reward-card.low:hover { border-color: #44cc44; box-shadow: 0 10px 30px rgba(68, 204, 68, 0.2); }

.reward-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.severity-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.severity-badge.critical { background: rgba(255, 68, 68, 0.2); color: #ff4444; }
.severity-badge.high { background: rgba(255, 136, 0, 0.2); color: #ff8800; }
.severity-badge.medium { background: rgba(255, 204, 0, 0.2); color: #ffcc00; }
.severity-badge.low { background: rgba(68, 204, 68, 0.2); color: #44cc44; }

.severity-icon {
    font-size: 1.5rem;
}

.reward-range {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.reward-examples h4 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reward-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-examples li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.reward-examples li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan, #00cfff);
}

/* Scope Section */
.bounty-scope {
    padding: 4rem 0;
}

.scope-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.scope-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.scope-icon {
    font-size: 1.5rem;
}

.scope-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.scope-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.scope-card:hover {
    border-color: var(--accent-cyan, #00cfff);
    transform: translateY(-3px);
}

.scope-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.scope-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.scope-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.priority-badge {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.priority-badge.primary {
    background: rgba(196, 255, 0, 0.2);
    color: var(--accent-lime, #c4ff00);
}

.out-scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.out-scope-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.out-scope-list li:last-child {
    border-bottom: none;
}

.out-scope-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-size: 0.8rem;
}

/* Rules Section */
.bounty-rules {
    padding: 4rem 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.rule-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 2rem;
}

.rule-card.do {
    border: 1px solid rgba(68, 204, 68, 0.3);
}

.rule-card.dont {
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.rule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.rule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-card ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-card ul li:last-child {
    border-bottom: none;
}

.rule-card.do li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #44cc44;
    font-weight: bold;
}

.rule-card.dont li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

.safe-harbor {
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1) 0%, rgba(196, 255, 0, 0.05) 100%);
    border: 1px solid var(--accent-cyan, #00cfff);
    border-radius: 12px;
    padding: 2rem;
}

.safe-harbor h3 {
    font-size: 1.25rem;
    color: var(--accent-cyan, #00cfff);
    margin-bottom: 1rem;
}

.safe-harbor p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Process Timeline */
.bounty-process {
    padding: 4rem 0;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-content h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 150px;
}

.step-time {
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan, #00cfff);
    background: rgba(0, 207, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.timeline-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan, #00cfff) 0%, rgba(0, 207, 255, 0.3) 100%);
    margin-top: 24px;
}

/* Submission Form */
.bounty-submit {
    padding: 4rem 0;
}

.bounty-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.required {
    color: #ff4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan, #00cfff);
    box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 1.25rem;
}

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
}

.form-message.success {
    background: rgba(68, 204, 68, 0.1);
    border: 1px solid rgba(68, 204, 68, 0.3);
}

.form-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.message-icon {
    font-size: 1.5rem;
}

.message-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.message-content p {
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.message-content code {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--accent-cyan, #00cfff);
}

/* Hall of Fame */
.bounty-hall-of-fame {
    padding: 4rem 0;
}

.hall-of-fame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hall-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(0, 207, 255, 0.3);
    border-radius: 16px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.hall-placeholder p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.placeholder-subtitle {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.researcher-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.researcher-card:hover {
    border-color: var(--accent-cyan, #00cfff);
    transform: translateY(-3px);
}

.researcher-card.rank-1 {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.researcher-card.rank-2 {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.researcher-card.rank-3 {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.researcher-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan, #00cfff);
    min-width: 50px;
    text-align: center;
}

.rank-1 .researcher-rank { color: #ffd700; }
.rank-2 .researcher-rank { color: #c0c0c0; }
.rank-3 .researcher-rank { color: #cd7f32; }

.researcher-info {
    flex: 1;
}

.researcher-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.researcher-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-icon {
    margin-right: 0.25rem;
}

.severity-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.severity-tag.critical { background: rgba(255, 68, 68, 0.2); color: #ff4444; }
.severity-tag.high { background: rgba(255, 136, 0, 0.2); color: #ff8800; }
.severity-tag.medium { background: rgba(255, 204, 0, 0.2); color: #ffcc00; }
.severity-tag.low { background: rgba(68, 204, 68, 0.2); color: #44cc44; }

.researcher-rewards {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-lime, #c4ff00);
}

/* Contact Section */
.bounty-contact {
    padding: 4rem 0;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1) 0%, rgba(196, 255, 0, 0.05) 100%);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 8px;
    color: var(--accent-cyan, #00cfff);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(0, 207, 255, 0.1);
    border-color: var(--accent-cyan, #00cfff);
}

.contact-icon {
    font-size: 1.25rem;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .reward-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scope-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bounty-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .security-shield {
        width: 200px;
        height: 200px;
    }

    .shield-icon {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .bounty-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-connector {
        width: 2px;
        height: 30px;
        margin: 0;
        background: linear-gradient(180deg, var(--accent-cyan, #00cfff) 0%, rgba(0, 207, 255, 0.3) 100%);
    }

    .hall-of-fame-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bounty-page {
        padding: 1rem;
        padding-top: 80px;
    }

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

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

    .reward-amount {
        font-size: 2rem;
    }

    .reward-grid {
        grid-template-columns: 1fr;
    }

    .scope-cards {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bounty-form {
        padding: 1.5rem;
    }

    .contact-methods {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .bounty-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Vesting Schedule Section */
.bounty-vesting {
    padding: 4rem 0;
}

.vesting-info {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.vesting-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vesting-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    max-width: 280px;
}

.vesting-item.tge {
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.15) 0%, rgba(0, 207, 255, 0.05) 100%);
    border: 1px solid rgba(0, 207, 255, 0.3);
}

.vesting-item.vested {
    background: linear-gradient(135deg, rgba(196, 255, 0, 0.15) 0%, rgba(196, 255, 0, 0.05) 100%);
    border: 1px solid rgba(196, 255, 0, 0.3);
}

.vesting-percent {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.vesting-item.tge .vesting-percent {
    color: var(--accent-cyan, #00cfff);
}

.vesting-item.vested .vesting-percent {
    color: var(--accent-lime, #c4ff00);
}

.vesting-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.vesting-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.vesting-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.vesting-timeline {
    margin-bottom: 2rem;
}

.timeline-bar {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
}

.timeline-segment.tge {
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, #00a0cc 100%);
}

.timeline-segment.month {
    background: linear-gradient(135deg, var(--accent-lime, #c4ff00) 0%, #9ecc00 100%);
}

.timeline-segment.month:nth-child(odd) {
    filter: brightness(0.9);
}

.vesting-example {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.vesting-example h4 {
    font-size: 1rem;
    color: var(--accent-cyan, #00cfff);
    margin-bottom: 1rem;
}

.vesting-example ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vesting-example li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vesting-example li:last-child {
    border-bottom: none;
}

.vesting-example strong {
    color: #fff;
}

@media (max-width: 768px) {
    .vesting-breakdown {
        flex-direction: column;
        gap: 1rem;
    }

    .vesting-arrow {
        transform: rotate(90deg);
    }

    .vesting-item {
        max-width: 100%;
    }

    .timeline-bar {
        flex-direction: column;
        height: auto;
    }

    .timeline-segment {
        height: 30px;
        width: 100% !important;
    }
}

/* ==========================================
   Vesting NFT Section
   ========================================== */
.bounty-nft {
    padding: 4rem 0;
}

.nft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.nft-preview {
    display: flex;
    justify-content: center;
}

.nft-card-preview {
    width: 320px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 20, 40, 0.6) 100%);
    border: 2px solid rgba(0, 207, 255, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 207, 255, 0.2);
    transition: all 0.3s ease;
}

.nft-card-preview:hover {
    border-color: var(--accent-cyan, #00cfff);
    box-shadow: 0 25px 70px rgba(0, 207, 255, 0.3);
    transform: translateY(-5px);
}

.nft-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.nft-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nft-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
}

.nft-visual {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1) 0%, rgba(196, 255, 0, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.nft-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 207, 255, 0.1) 45deg,
        transparent 90deg,
        rgba(196, 255, 0, 0.1) 135deg,
        transparent 180deg
    );
    animation: nft-rotate 10s linear infinite;
}

@keyframes nft-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nft-token-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.nft-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-lime, #c4ff00);
    position: relative;
    z-index: 1;
}

.nft-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.nft-detail {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
}

.nft-detail-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.nft-detail-value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.nft-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nft-feature {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.nft-feature:hover {
    border-color: var(--accent-cyan, #00cfff);
    transform: translateX(5px);
}

.nft-feature-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.nft-feature-content h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.nft-feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   My Allocations Section
   ========================================== */
.bounty-allocations {
    padding: 4rem 0;
}

.allocations-container {
    max-width: 900px;
    margin: 0 auto;
}

.wallet-connect-prompt {
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed rgba(0, 207, 255, 0.3);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
}

.btn-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 207, 255, 0.3);
}

.btn-connect .btn-icon {
    font-size: 1.5rem;
}

.wallet-lookup {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.wallet-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-family: monospace;
}

.wallet-input:focus {
    outline: none;
    border-color: var(--accent-cyan, #00cfff);
    box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.1);
}

.wallet-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-lookup {
    padding: 1rem 1.5rem;
    background: rgba(0, 207, 255, 0.2);
    border: 1px solid var(--accent-cyan, #00cfff);
    color: var(--accent-cyan, #00cfff);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-lookup:hover {
    background: rgba(0, 207, 255, 0.3);
}

.wallet-connected {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-address-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wallet-address-display .wallet-icon {
    font-size: 1.5rem;
}

.wallet-address {
    font-family: monospace;
    font-size: 1rem;
    color: var(--accent-cyan, #00cfff);
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.wallet-status .status-dot {
    width: 8px;
    height: 8px;
    background: #44cc44;
    border-radius: 50%;
}

.wallet-status.verified .status-dot {
    background: var(--accent-lime, #c4ff00);
    box-shadow: 0 0 10px rgba(196, 255, 0, 0.5);
}

.btn-verify {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(196, 255, 0, 0.1);
    border: 1px solid var(--accent-lime, #c4ff00);
    color: var(--accent-lime, #c4ff00);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-verify:hover {
    background: rgba(196, 255, 0, 0.2);
}

.allocations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.allocations-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.allocations-empty .empty-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.allocations-empty p {
    font-size: 1rem;
    margin: 0;
}

.allocation-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.allocation-card:hover {
    border-color: var(--accent-cyan, #00cfff);
}

.allocation-card.vesting {
    border-left: 4px solid var(--accent-lime, #c4ff00);
}

.allocation-card.claimable {
    border-left: 4px solid var(--accent-cyan, #00cfff);
    background: linear-gradient(90deg, rgba(0, 207, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.allocation-card.claimed {
    border-left: 4px solid #44cc44;
    opacity: 0.7;
}

.allocation-nft {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.2) 0%, rgba(196, 255, 0, 0.2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.allocation-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.allocation-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.allocation-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.allocation-amount {
    text-align: right;
}

.allocation-amount .amount-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-lime, #c4ff00);
    margin-bottom: 0.25rem;
}

.allocation-amount .amount-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.allocation-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-claim {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan, #00cfff) 0%, var(--accent-lime, #c4ff00) 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 207, 255, 0.3);
}

.btn-claim:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-view-nft {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(0, 207, 255, 0.3);
    color: var(--accent-cyan, #00cfff);
    font-size: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-view-nft:hover {
    background: rgba(0, 207, 255, 0.1);
}

/* ==========================================
   Smart Contracts Section
   ========================================== */
.bounty-contracts {
    padding: 4rem 0;
}

.contracts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.contract-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contract-card:hover {
    border-color: var(--accent-cyan, #00cfff);
    transform: translateY(-3px);
}

.contract-card h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contract-card .contract-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contract-card code {
    display: block;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-cyan, #00cfff);
    margin-bottom: 1rem;
    word-break: break-all;
}

.contract-card .contract-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-lime, #c4ff00);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contract-card .contract-link:hover {
    text-decoration: underline;
}

.contract-card .contract-link::after {
    content: '\2197';
    font-size: 1rem;
}

.contracts-info {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1) 0%, rgba(196, 255, 0, 0.05) 100%);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contracts-info .info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contracts-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contracts-info strong {
    color: #fff;
}

/* ==========================================
   Mobile Responsiveness for New Sections
   ========================================== */
@media (max-width: 992px) {
    .nft-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nft-preview {
        order: -1;
    }

    .contracts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .allocation-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .allocation-nft {
        margin: 0 auto;
    }

    .allocation-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .allocation-amount {
        text-align: center;
    }

    .allocation-actions {
        flex-direction: row;
        justify-content: center;
    }

    .wallet-lookup {
        flex-direction: column;
    }

    .wallet-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nft-card-preview {
        width: 280px;
    }

    .nft-details {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .wallet-connect-prompt {
        padding: 2rem 1rem;
    }

    .btn-connect {
        width: 100%;
        justify-content: center;
    }

    .nft-card-preview {
        width: 100%;
        max-width: 280px;
    }

    .allocation-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-claim,
    .btn-view-nft {
        width: 100%;
    }
}
