/* Google Index Checker Tool Styles */
.gic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.gic-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(140, 30, 230, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 15px;
    border: 1px solid rgba(140, 30, 230, 0.3);
}

.gic-hero h1 {
    color: #8C1EE6;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(140, 30, 230, 0.7);
    background: linear-gradient(45deg, #8C1EE6, #6a0dad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gic-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #e0e0e0;
}

.gic-tool-container {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(140, 30, 230, 0.3);
    margin-bottom: 50px;
    border: 1px solid rgba(140, 30, 230, 0.2);
    position: relative;
    overflow: hidden;
}

.gic-tool-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(140, 30, 230, 0.1), transparent);
    transition: left 0.5s;
}

.gic-tool-container:hover::before {
    left: 100%;
}

.gic-tool-container h2 {
    color: #8C1EE6;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-shadow: 0 0 10px rgba(140, 30, 230, 0.5);
}

.gic-input-group {
    display: flex;
    margin-bottom: 30px;
    background: #000000;
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.gic-input-group:focus-within {
    border-color: #8C1EE6;
    box-shadow: 0 0 20px rgba(140, 30, 230, 0.4);
    transform: translateY(-2px);
}

.gic-input-group input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.gic-input-group input:focus {
    outline: none;
}

.gic-input-group input::placeholder {
    color: #666666;
}

.gic-input-group input:valid {
    border-color: #4CAF50 !important;
}

.gic-input-group input:invalid {
    border-color: #F44336 !important;
}

.gic-input-group button {
    padding: 20px 40px;
    background: linear-gradient(45deg, #8C1EE6, #6a0dad);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gic-input-group button:hover {
    background: linear-gradient(45deg, #7a1acf, #5a0ba5);
    box-shadow: 0 5px 20px rgba(140, 30, 230, 0.6);
    transform: translateY(-2px);
}

.gic-input-group button:active {
    transform: translateY(0);
}

.gic-input-group button:disabled {
    background: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gic-result {
    display: none;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    border: 2px solid transparent;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gic-result.indexed {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: #4CAF50;
    color: #4CAF50;
}

.gic-result.not-indexed {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: #F44336;
    color: #F44336;
}

.gic-result.error {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: #FF9800;
    color: #FF9800;
}

.gic-details {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #8C1EE6;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 200px; }
}

.gic-url-info {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(140, 30, 230, 0.1);
    border-radius: 8px;
    border-left: 4px solid #8C1EE6;
    color: #e0e0e0;
    font-size: 0.9rem;
    animation: slideInUp 0.5s ease-out;
}

.gic-url-info code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 3px;
    color: #8C1EE6;
    font-family: monospace;
}

.gic-position {
    display: inline-block;
    background: rgba(140, 30, 230, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 0.9rem;
    border: 1px solid #8C1EE6;
}

.gic-loading {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.gic-spinner {
    border: 4px solid rgba(140, 30, 230, 0.3);
    border-radius: 50%;
    border-top: 4px solid #8C1EE6;
    width: 50px;
    height: 50px;
    animation: gic-spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(140, 30, 230, 0.5);
}

@keyframes gic-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gic-loading p {
    color: #8C1EE6;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(140, 30, 230, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Features Section */
.gic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gic-feature {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(140, 30, 230, 0.1);
    position: relative;
    overflow: hidden;
}

.gic-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8C1EE6, #6a0dad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gic-feature:hover::before {
    transform: scaleX(1);
}

.gic-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(140, 30, 230, 0.3);
    border-color: rgba(140, 30, 230, 0.3);
}

.gic-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #8C1EE6, #6a0dad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gic-feature h3 {
    color: #8C1EE6;
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(140, 30, 230, 0.3);
}

.gic-feature p {
    line-height: 1.7;
    color: #cccccc;
}

/* Stats Section */
.gic-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.gic-stat {
    padding: 30px 20px;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 1px solid rgba(140, 30, 230, 0.2);
    transition: all 0.3s ease;
}

.gic-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 30, 230, 0.2);
}

.gic-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #8C1EE6;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(140, 30, 230, 0.5);
}

.gic-stat-label {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Benefits Section */
.gic-benefits {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 1px solid rgba(140, 30, 230, 0.2);
}

.gic-benefits h2 {
    color: #8C1EE6;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(140, 30, 230, 0.5);
}

.gic-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gic-benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(140, 30, 230, 0.1);
}

.gic-benefit-item:hover {
    background: rgba(140, 30, 230, 0.1);
    border-color: rgba(140, 30, 230, 0.3);
    transform: translateX(5px);
}

.gic-benefit-icon {
    color: #8C1EE6;
    margin-right: 20px;
    font-size: 1.5rem;
    margin-top: 3px;
    text-shadow: 0 0 10px rgba(140, 30, 230, 0.5);
}

.gic-benefit-content h3 {
    color: #8C1EE6;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gic-benefit-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* FAQ Section */
.gic-faq {
    margin-top: 60px;
}

.gic-faq h2 {
    color: #8C1EE6;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(140, 30, 230, 0.5);
}

.gic-faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(140, 30, 230, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: #111111;
    transition: all 0.3s ease;
}

.gic-faq-item:hover {
    border-color: rgba(140, 30, 230, 0.4);
}

.gic-faq-question {
    color: #8C1EE6;
    font-size: 1.3rem;
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(140, 30, 230, 0.05);
    transition: all 0.3s ease;
}

.gic-faq-question:hover {
    background: rgba(140, 30, 230, 0.1);
}

.gic-faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #8C1EE6;
}

.gic-faq-answer {
    color: #cccccc;
    line-height: 1.7;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gic-faq-answer.active {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

/* CTA Section */
.gic-cta {
    text-align: center;
    padding: 70px 40px;
    background: linear-gradient(135deg, rgba(140, 30, 230, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 20px;
    margin-top: 60px;
    border: 1px solid rgba(140, 30, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.gic-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(140, 30, 230, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.gic-cta h2 {
    color: #8C1EE6;
    margin-bottom: 25px;
    font-size: 2.8rem;
    text-shadow: 0 0 20px rgba(140, 30, 230, 0.7);
    position: relative;
    z-index: 2;
}

.gic-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

.gic-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #8C1EE6, #6a0dad);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(140, 30, 230, 0.5);
}

.gic-cta-button:hover {
    background: linear-gradient(45deg, #7a1acf, #5a0ba5);
    box-shadow: 0 10px 35px rgba(140, 30, 230, 0.7);
    transform: translateY(-5px) scale(1.05);
}

/* Notification Styles */
.gic-notification {
    font-weight: bold;
}

.gic-notification-info {
    background: #2196F3 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gic-hero h1 {
        font-size: 2.5rem;
    }
    
    .gic-hero p {
        font-size: 1.1rem;
    }
    
    .gic-input-group {
        flex-direction: column;
        padding: 0;
    }
    
    .gic-input-group input {
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
        border-bottom: 1px solid #333333;
    }
    
    .gic-input-group button {
        border-radius: 0 0 10px 10px;
        padding: 15px 20px;
    }
    
    .gic-tool-container {
        padding: 30px 20px;
    }
    
    .gic-features {
        grid-template-columns: 1fr;
    }
    
    .gic-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gic-cta {
        padding: 50px 20px;
    }
    
    .gic-cta h2 {
        font-size: 2.2rem;
    }
    
    .gic-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gic-faq-question {
        font-size: 1.1rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gic-container {
        padding: 20px 15px;
    }
    
    .gic-hero {
        padding: 40px 15px;
    }
    
    .gic-hero h1 {
        font-size: 2rem;
    }
    
    .gic-stats {
        grid-template-columns: 1fr;
    }
    
    .gic-stat-number {
        font-size: 2.5rem;
    }
    
    .gic-benefits {
        padding: 30px 20px;
    }
    
    .gic-cta {
        padding: 40px 20px;
    }
    
    .gic-cta h2 {
        font-size: 1.8rem;
    }
    
    .gic-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .gic-input-group,
    .gic-cta-button {
        display: none !important;
    }
    
    .gic-container {
        background: white !important;
        color: black !important;
    }
    
    .gic-hero,
    .gic-tool-container,
    .gic-feature,
    .gic-benefits,
    .gic-faq-item {
        background: white !important;
        border: 1px solid #ddd !important;
    }
    
    .gic-hero h1,
    .gic-feature h3,
    .gic-benefit-content h3,
    .gic-faq-question {
        color: #333 !important;
    }
}