* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('camo.jpeg') center center / cover no-repeat fixed;
    background-color: #1a1a2e;
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #ff4757;
}

.warning-title {
    font-size: 2.5em;
    color: #ff4757;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.main-title {
    font-size: 3em;
    color: #ffd32a;
    text-shadow: 0 0 30px rgba(255, 211, 42, 0.5);
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3em;
    color: #dfe4ea;
    margin-top: 10px;
}

.attribution {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.castle-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(255, 211, 42, 0.5);
    box-shadow: 0 5px 20px rgba(255, 211, 42, 0.3);
    transition: transform 0.3s ease;
}

.castle-image:hover {
    transform: scale(1.05);
}

.attribution-text {
    font-size: 1.1em;
    color: #ffd32a;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 211, 42, 0.3);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.stat-label {
    font-size: 0.9em;
    color: #dfe4ea;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffd32a;
    text-shadow: 0 0 20px rgba(255, 211, 42, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-value.jump-animation {
    animation: jump 0.6s ease;
}

@keyframes jump {
    0% {
        transform: translateY(0) scale(1);
    }
    30% {
        transform: translateY(-20px) scale(1.15);
        text-shadow: 0 0 30px rgba(255, 211, 42, 0.8);
    }
    60% {
        transform: translateY(-10px) scale(1.08);
    }
    80% {
        transform: translateY(-5px) scale(1.03);
    }
    100% {
        transform: translateY(0) scale(1);
        text-shadow: 0 0 20px rgba(255, 211, 42, 0.5);
    }
}

#viewCount.jump-animation {
    color: #ffd32a;
    text-shadow: 0 0 30px rgba(255, 211, 42, 0.8), 0 0 60px rgba(255, 211, 42, 0.4);
}

.countdown {
    font-family: 'Courier New', monospace;
    font-size: 1.8em !important;
    color: #ff4757 !important;
}

.expose-section {
    margin-top: 40px;
}

.alert-box {
    background: rgba(255, 71, 87, 0.2);
    border: 3px solid #ff4757;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.alert-box.critical h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff4757;
    text-shadow: 0 0 15px rgba(255, 71, 87, 0.5);
}

.alert-box p {
    font-size: 1.2em;
    line-height: 1.8;
}

.issue-card {
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #ffd32a;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.issue-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.issue-card h3 {
    color: #ffd32a;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 211, 42, 0.3);
}

.issue-card ul {
    margin-left: 20px;
    margin-top: 15px;
}

.issue-card li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #dfe4ea;
}

.fast-payment-notice {
    background: rgba(255, 193, 7, 0.2);
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    animation: flash 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fast-payment-notice:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.5);
}

.fast-payment-notice:active {
    transform: scale(0.98);
}

.click-hint {
    font-size: 1em;
    color: #ffd32a;
    margin-top: 10px;
    font-style: italic;
    animation: pulse 1.5s infinite;
}

@keyframes flash {
    0%, 100% {
        border-color: #ffc107;
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    }
    50% {
        border-color: #ffd32a;
        box-shadow: 0 0 40px rgba(255, 211, 42, 0.6);
    }
}

.fast-payment-notice h3 {
    font-size: 1.8em;
    color: #ffc107;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.fast-payment-notice p {
    font-size: 1.2em;
    color: #ffffff;
    line-height: 1.8;
}

.fast-payment-notice strong {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.faq-section {
    background: rgba(52, 152, 219, 0.15);
    border: 3px solid #3498db;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.faq-section h3 {
    font-size: 2.2em;
    color: #3498db;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #3498db;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.faq-item h4 {
    font-size: 1.5em;
    color: #3498db;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.faq-item p {
    font-size: 1.1em;
    color: #dfe4ea;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-item strong {
    color: #3498db;
}

.payment-steps {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.payment-steps li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #dfe4ea;
    line-height: 1.7;
    padding-left: 10px;
}

.payment-steps li strong {
    color: #3498db;
}

.faq-item code {
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #ffd32a;
    font-size: 0.95em;
    border: 1px solid rgba(255, 211, 42, 0.3);
    word-break: break-all;
    display: inline-block;
}

.faq-item ul {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.faq-item ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #dfe4ea;
    line-height: 1.6;
}

.faq-payment-box {
    background: rgba(255, 165, 0, 0.15);
    border: 3px solid #ffa500;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.faq-payment-box h4 {
    font-size: 1.8em;
    color: #ffa500;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

.faq-payment-box ul {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.faq-payment-box li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #dfe4ea;
    line-height: 1.7;
}

.faq-payment-box li strong {
    color: #ffa500;
}

.faq-payment-box code {
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #ffd32a;
    font-size: 0.95em;
    border: 1px solid rgba(255, 211, 42, 0.3);
    word-break: break-all;
}

.faq-final-note {
    background: rgba(255, 71, 87, 0.2);
    border-left: 5px solid #ff4757;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.15em;
    color: #ffffff;
    animation: pulse 2s infinite;
}

@keyframes highlightFlash {
    0% {
        background: rgba(52, 152, 219, 0.15);
        box-shadow: 0 0 0 rgba(52, 152, 219, 0);
    }
    50% {
        background: rgba(52, 152, 219, 0.3);
        box-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
    }
    100% {
        background: rgba(52, 152, 219, 0.15);
        box-shadow: 0 0 0 rgba(52, 152, 219, 0);
    }
}

.ella-section {
    background: rgba(255, 107, 129, 0.15);
    border: 3px solid #ff6b81;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.ella-image-container {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
}

.ella-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #ff6b81;
    box-shadow: 0 10px 30px rgba(255, 107, 129, 0.5);
    transition: transform 0.3s ease;
}

.ella-image:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 107, 129, 0.2);
    border: 3px dashed #ff6b81;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b81;
    font-size: 1.2em;
    font-weight: bold;
}

.ella-content {
    flex: 1;
}

.ella-content h3 {
    font-size: 2em;
    color: #ff6b81;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 107, 129, 0.5);
}

.ella-content > p {
    font-size: 1.1em;
    color: #dfe4ea;
    margin-bottom: 20px;
    line-height: 1.8;
}

.ella-content ul {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.ella-content li {
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #dfe4ea;
    line-height: 1.6;
}

.ella-content li strong {
    color: #ff6b81;
}

.ella-warning {
    background: rgba(255, 71, 87, 0.2);
    border-left: 5px solid #ff4757;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.1em;
    color: #ffffff;
}

.payment-box {
    background: rgba(255, 165, 0, 0.15);
    border: 3px solid #ffa500;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.payment-box h3 {
    font-size: 2em;
    color: #ffa500;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

.payment-box > p {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.8;
}

.btc-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.btc-info p {
    font-size: 1.1em;
    color: #ffd32a;
    margin-bottom: 15px;
}

.btc-address {
    font-family: 'Courier New', monospace;
    font-size: 1.3em;
    color: #ffd32a;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(255, 211, 42, 0.5);
    border: 2px solid rgba(255, 211, 42, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btc-address:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 211, 42, 0.6);
    transform: scale(1.02);
}

.copy-btn {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.6);
}

.copy-btn:active {
    transform: translateY(0);
}

.payment-note {
    background: rgba(46, 213, 115, 0.2);
    border-left: 5px solid #2ed573;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.05em;
    color: #ffffff;
    text-align: left;
}

.payment-warning {
    background: rgba(255, 71, 87, 0.2);
    border: 2px solid #ff4757;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.1em;
    color: #ffffff;
    text-align: left;
    animation: pulse 2s infinite;
}

.threat-box {
    background: rgba(255, 0, 0, 0.25);
    border: 4px solid #ff0000;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    animation: threatPulse 1.5s infinite;
}

@keyframes threatPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
        border-color: #ff0000;
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
        border-color: #ff4444;
    }
}

.threat-box h4 {
    font-size: 2.2em;
    color: #ff0000;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    animation: pulse 2s infinite;
}

.threat-text {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.threat-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.threat-list li {
    margin-bottom: 15px;
    font-size: 1.15em;
    color: #ffffff;
    line-height: 1.8;
    padding-left: 10px;
    border-left: 3px solid #ff0000;
    padding: 10px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.threat-list li:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateX(5px);
}

.threat-list li strong {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.threat-final {
    font-size: 1.4em;
    color: #ff0000;
    margin-top: 25px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

.sebastian-box {
    background: rgba(138, 43, 226, 0.15);
    border: 3px solid #8a2be2;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.sebastian-box h3 {
    font-size: 2em;
    color: #8a2be2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    text-align: center;
}

.sebastian-box > p {
    font-size: 1.1em;
    color: #dfe4ea;
    margin-bottom: 20px;
    line-height: 1.8;
}

.sebastian-box ul {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.sebastian-box li {
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #dfe4ea;
    line-height: 1.6;
}

.sebastian-box li strong {
    color: #8a2be2;
}

.sebastian-warning {
    background: rgba(255, 71, 87, 0.2);
    border-left: 5px solid #ff4757;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.1em;
    color: #ffffff;
}

.action-box {
    background: rgba(46, 213, 115, 0.2);
    border: 3px solid #2ed573;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.action-box h3 {
    font-size: 2em;
    color: #2ed573;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px rgba(46, 213, 115, 0.5);
}

.action-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.action-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-item strong {
    color: #2ed573;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.action-item p {
    color: #dfe4ea;
    font-size: 0.95em;
}

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #dfe4ea;
    font-size: 0.95em;
}

footer p {
    margin-bottom: 10px;
}

footer strong {
    color: #ffd32a;
}

/* iOS and Android Mobile Optimizations */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
    
    .container {
        padding: 15px;
        border-radius: 15px;
        margin: 0 auto;
    }

    .main-title {
        font-size: 1.8em;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .warning-title {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .attribution {
        flex-direction: column;
        gap: 10px;
    }

    .castle-image {
        max-width: 150px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }

    .stat-label {
        font-size: 0.85em;
    }
    
    .stat-value {
        font-size: 1.8em;
    }

    .countdown {
        font-size: 1.5em !important;
    }
    
    .alert-box {
        padding: 20px;
    }

    .alert-box.critical h3 {
        font-size: 1.5em;
    }

    .alert-box p {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .issue-card {
        padding: 20px;
    }

    .issue-card h3 {
        font-size: 1.4em;
    }

    .issue-card li {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .fast-payment-notice {
        padding: 20px;
    }

    .fast-payment-notice h3 {
        font-size: 1.5em;
    }

    .fast-payment-notice p {
        font-size: 1.1em;
    }

    .faq-section {
        padding: 20px;
    }

    .faq-section h3 {
        font-size: 1.8em;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h4 {
        font-size: 1.3em;
    }

    .faq-item p {
        font-size: 1em;
    }

    .faq-item code {
        font-size: 0.9em;
        word-break: break-all;
        display: block;
        padding: 10px;
        margin: 10px 0;
    }

    .faq-payment-box {
        padding: 20px;
    }

    .faq-payment-box h4 {
        font-size: 1.5em;
    }

    .ella-section {
        flex-direction: column;
        padding: 20px;
    }

    .ella-image-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .ella-content h3 {
        font-size: 1.5em;
    }

    .ella-content > p {
        font-size: 1em;
    }

    .ella-content li {
        font-size: 0.95em;
    }

    .payment-box,
    .sebastian-box {
        padding: 20px;
    }

    .payment-box h3,
    .sebastian-box h3 {
        font-size: 1.5em;
    }

    .payment-box > p {
        font-size: 1.1em;
    }

    .btc-info {
        padding: 20px;
    }

    .btc-address {
        font-size: 0.95em;
        padding: 12px 15px;
        word-break: break-all;
    }

    .copy-btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        margin-top: 10px;
    }

    .payment-note,
    .payment-warning {
        font-size: 1em;
        padding: 12px 15px;
    }

    .threat-box {
        padding: 20px;
    }

    .threat-box h4 {
        font-size: 1.6em;
    }

    .threat-text {
        font-size: 1.1em;
    }

    .threat-list {
        padding: 15px;
    }

    .threat-list li {
        font-size: 1em;
        padding: 8px;
    }

    .threat-final {
        font-size: 1.1em;
    }
}

/* Small mobile devices (iPhone SE, small Android phones) */
@media (max-width: 375px) {
    body {
        padding: 8px;
    }

    .container {
        padding: 12px;
    }

    .main-title {
        font-size: 1.5em;
    }

    .warning-title {
        font-size: 1.3em;
    }

    .stat-value {
        font-size: 1.5em;
    }

    .countdown {
        font-size: 1.3em !important;
    }

    .alert-box.critical h3 {
        font-size: 1.3em;
    }

    .issue-card h3,
    .faq-item h4,
    .payment-box h3,
    .sebastian-box h3 {
        font-size: 1.2em;
    }

    .faq-section h3 {
        font-size: 1.5em;
    }

    .btc-address {
        font-size: 0.85em;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .container {
        padding: 20px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .ella-section {
        flex-direction: row;
        gap: 20px;
    }

    .ella-image-container {
        max-width: 200px;
        margin: 0;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
    }

    .container {
        -webkit-overflow-scrolling: touch;
    }

    button,
    .copy-btn {
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    }

    .btc-address {
        -webkit-user-select: all;
        user-select: all;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .stat-item,
    .issue-card,
    .faq-item {
        min-height: 44px;
    }

    .copy-btn,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    .fast-payment-notice {
        min-height: 44px;
    }
}

