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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

/* Name Tag Styles */
.name-tag {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.name-tag-header {
    background: #e63946;
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hello-text {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 5px;
}

.my-name-is-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.name-tag-name {
    font-size: 52px;
    font-weight: 400;
    color: #000;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    font-family: 'Brush Script MT', 'Apple Chancery', cursive;
    background: white;
}

.verified-name {
    font-family: 'Brush Script MT', 'Apple Chancery', cursive;
}

.name-tag-photo {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.name-tag-photo img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.name-tag-photo.hidden {
    display: none;
}

/* Button Styles - Inside Name Badge */
.verify-button {
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.verify-button:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.verify-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.verify-button.hidden {
    display: none;
}

/* Status Messages */
.status-message {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    min-height: 52px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-message.hidden {
    opacity: 0;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    opacity: 1;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    opacity: 1;
}

.status-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    opacity: 1;
}

/* Warning Message */
.warning-message {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.warning-message.hidden {
    display: none;
}

.warning-message strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.info-section p {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.info-section ul {
    list-style: none;
    margin: 16px 0;
}

.info-section li {
    padding: 8px 0;
    color: #444;
}

.small-text {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 600px) {
    .name-tag-header {
        font-size: 24px;
    }
    
    .name-tag-name {
        font-size: 36px;
        min-height: 60px;
    }
    
    .verify-button {
        font-size: 16px;
        padding: 14px 24px;
    }
}

