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

body {
    font-family: 'Courier New', monospace;
    background: url('images/background.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.7), rgba(255, 140, 0, 0.6));
    z-index: -1;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.7), rgba(255, 140, 0, 0.6));
    }
    50% {
        background: linear-gradient(135deg, rgba(255, 140, 0, 0.7), rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.6));
    }
}

.container {
    max-width: 900px;
    width: 90%;
    padding: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 140, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.title {
    font-size: 5rem;
    font-weight: bold;
    color: #ff8c00;
    text-shadow: 
        4px 4px 0 #8b4513,
        8px 8px 20px rgba(255, 140, 0, 0.5);
    letter-spacing: 8px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

.mascot-section {
    margin: 40px 0;
}

.mascot {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 5px solid #ff8c00;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
    transition: transform 0.3s ease;
}

.mascot:hover {
    transform: scale(1.05) rotate(2deg);
}

.contract-section {
    margin: 50px 0;
}

.contract-section h2 {
    font-size: 1.5rem;
    color: #ffa500;
    text-transform: lowercase;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.contract-box {
    background: rgba(139, 69, 19, 0.5);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ff8c00;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contract-label {
    font-size: 1.2rem;
    color: #ffa500;
    font-weight: bold;
}

.contract-address {
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

.copy-btn {
    background: #ff8c00;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    font-family: 'Courier New', monospace;
}

.copy-btn:hover {
    background: #ffa500;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.6);
}

.copy-btn:active {
    transform: scale(0.95);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pill-btn, .warning-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
    border: 3px solid #ff8c00;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: lowercase;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill-btn {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000;
}

.pill-btn:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.7);
}

.warning-btn {
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
    border-color: #ff4500;
}

.warning-btn:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.7);
    background: rgba(255, 0, 0, 0.9);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    border-radius: 25px;
    border: 4px solid #ff8c00;
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.5);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    margin-bottom: 30px;
}

.warning-icon {
    font-size: 4rem;
    animation: shake 0.5s ease infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.modal-body {
    margin: 30px 0;
}

.warning-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-transform: lowercase;
    line-height: 1.4;
}

.warning-subtext {
    font-size: 1.2rem;
    color: #ffa500;
    text-transform: lowercase;
    line-height: 1.4;
}

.modal-footer {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: lowercase;
    font-family: 'Courier New', monospace;
}

.accept-btn {
    background: #ff8c00;
    color: #000;
}

.accept-btn:hover {
    background: #ffa500;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.7);
}

.decline-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.decline-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .mascot {
        max-width: 300px;
    }

    .contract-address {
        font-size: 1.2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pill-btn, .warning-btn {
        width: 100%;
        max-width: 300px;
    }

    .warning-text {
        font-size: 1.4rem;
    }

    .warning-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }

    .container {
        padding: 20px;
    }

    .modal-content {
        padding: 25px;
    }
}

