:root {
    --dmca-primary: #2c5282;
    --dmca-secondary: #38a169;
    --dmca-accent: #3182ce;
    --dmca-text: #2d3748;
    --dmca-bg: #f7fafc;
}

.dmca-shield-generator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--dmca-bg);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dmca-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.dmca-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: move 4s linear infinite;
}

@keyframes move {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
}

.dmca-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.8em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.dmca-header p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.dmca-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.dmca-section h2 {
    color: var(--dmca-text);
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 600;
}

.dmca-subtitle {
    font-size: 0.5em;
    font-weight: normal;
    color: #718096;
}

.dmca-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.dmca-badge-option {
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.dmca-badge-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.dmca-badge-option:hover::before {
    left: 100%;
}

.dmca-badge-option:hover {
    border-color: var(--dmca-accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
}

.dmca-badge-option.selected {
    border-color: var(--dmca-accent);
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(49, 130, 206, 0.3);
}

.dmca-badge-option svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.dmca-right-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.8);
}

.dmca-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.dmca-form-group {
    margin-bottom: 25px;
}

.dmca-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dmca-text);
    font-size: 0.95em;
}

.dmca-required {
    color: #e53e3e;
}

.dmca-field-description {
    display: block;
    font-size: 0.85em;
    color: #718096;
    margin-top: 5px;
    font-style: italic;
}

.dmca-form-group input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f7fafc;
    font-family: inherit;
    box-sizing: border-box;
}

.dmca-form-group input:focus {
    outline: none;
    border-color: var(--dmca-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    transform: translateY(-1px);
}

.dmca-form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.dmca-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: white;
}

.dmca-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.dmca-btn:hover::before {
    left: 100%;
}

.dmca-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.dmca-btn:active {
    transform: translateY(-1px);
}

.dmca-or {
    color: #718096;
    font-size: 14px;
    font-style: italic;
}

.dmca-selected-badge {
    margin: 30px 0;
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px dashed #cbd5e0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.dmca-selected-badge svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.dmca-code-section h3 {
    color: var(--dmca-text);
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.dmca-code-section textarea {
    width: 100%;
    height: 140px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 13px;
    resize: vertical;
    background: #f7fafc;
    transition: all 0.3s ease;
    line-height: 1.4;
    box-sizing: border-box;
}

.dmca-code-section textarea:focus {
    outline: none;
    border-color: var(--dmca-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.dmca-code-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.dmca-copy-btn {
    font-size: 13px;
    padding: 14px 20px;
}

.dmca-blogger-btn {
    background: linear-gradient(135deg, #ff6600 0%, #e55100 100%);
    color: white;
}

.dmca-facebook-btn {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
    color: white;
}

.dmca-help-text {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-radius: 12px;
    border-left: 4px solid var(--dmca-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.dmca-success-message {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid #9ae6b4;
    color: #22543d;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    cursor: pointer;
}

.dmca-error-message {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #fc8181;
    color: #742a2a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* Signup Page Styles */
.dmca-shield-signup {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dmca-signup-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.dmca-signup-header {
    background: linear-gradient(135deg, #2c5282 0%, #38a169 100%);
    color: white;
    text-align: center;
    padding: 50px 30px;
}

.dmca-signup-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    font-weight: 700;
}

.dmca-signup-header p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
}

.dmca-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 30px;
}

.dmca-service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.dmca-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.dmca-service-card.featured {
    border-color: #38a169;
    transform: scale(1.05);
}

.dmca-service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #38a169;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-header h3 {
    font-size: 1.8em;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-price {
    margin-bottom: 30px;
}

.service-price .price {
    font-size: 3em;
    font-weight: 700;
    color: #38a169;
    line-height: 1;
}

.service-price .period {
    font-size: 1.2em;
    color: #718096;
    font-weight: 500;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.service-features li {
    padding: 10px 0;
    font-size: 1em;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-btn {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-btn {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: white;
}

.free-btn:hover {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    transform: translateY(-2px);
}

.pro-btn {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
}

.pro-btn:hover {
    background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
    transform: translateY(-2px);
}

.enterprise-btn {
    background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
    color: white;
}

.enterprise-btn:hover {
    background: linear-gradient(135deg, #2a4365 0%, #1a365d 100%);
    transform: translateY(-2px);
}

.dmca-checkout-form {
    background: white;
    padding: 50px 30px;
    border-top: 1px solid #e2e8f0;
}

.dmca-checkout-form h2 {
    color: #2c5282;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.checkout-summary {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #cbd5e0;
}

.checkout-summary h3 {
    color: #2c5282;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.plan-price {
    font-size: 2em;
    color: #38a169;
    font-weight: 700;
}

.checkout-fields {
    max-width: 600px;
    margin: 0 auto;
}

.checkout-fields .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.checkout-fields .form-group {
    margin-bottom: 25px;
}

.checkout-fields label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95em;
}

.checkout-fields input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f7fafc;
    font-family: inherit;
    box-sizing: border-box;
}

.checkout-fields input:focus {
    outline: none;
    border-color: #38a169;
    background: white;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.payment-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid #9ae6b4;
}

.payment-section h3 {
    color: #2c5282;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-section {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9em;
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 2px;
}

.checkout-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.checkout-btn {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
    transform: translateY(-2px);
}

.back-btn {
    background: #718096;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dmca-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dmca-form-row {
        grid-template-columns: 1fr;
    }
    
    .dmca-code-actions {
        grid-template-columns: 1fr;
    }
    
    .dmca-badge-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .dmca-header h1 {
        font-size: 2.2em;
    }

    .dmca-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dmca-right-section {
        padding: 25px;
    }
    
    .checkout-fields .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dmca-service-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .dmca-signup-header {
        padding: 30px 20px;
    }
    
    .dmca-signup-header h1 {
        font-size: 2em;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

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