/* Global Styles for OTPSell.com Theme */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    color: #212529;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #ff8904 0%, #e67e22 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 137, 4, 0.3);
    border-radius: 0 0 50px 50px;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ff8904;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-post {
    background: white;
    padding: 35px;
    margin-bottom: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff8904, #e67e22, #ff8904);
    border-radius: 25px 25px 0 0;
}

.blog-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 137, 4, 0.2);
}

.blog-post h2 {
    color: #ff8904;
    margin-top: 0;
    font-size: 1.8em;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.cta-button {
    background: linear-gradient(135deg, #ff8904 0%, #e67e22 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 137, 4, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 137, 4, 0.5);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    margin-top: 25px;
    border: 2px solid #ff8904;
    box-shadow: 0 4px 15px rgba(255, 137, 4, 0.1);
}

form input[type="submit"] {
    background: linear-gradient(135deg, #ff8904 0%, #e67e22 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 137, 4, 0.4);
}

form input[type="submit"]:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 137, 4, 0.5);
}

footer {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-radius: 50px 50px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #343a40;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 30px 15px;
        border-radius: 0 0 30px 30px;
    }
    
    .blog-post {
        padding: 25px 20px;
        border-radius: 20px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    form {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    footer {
        padding: 25px 15px;
        border-radius: 30px 30px 0 0;
    }
}
