
Original CSS
.foo { color: #ff0000; }
.bar { color: rgba(255, 0, 0, 1); }
Minified CSS
Source map
Restructure
Beautify
@keyframes pulse {
    0%,to {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.1);
        opacity: .1
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes successPulse {
    0%,to {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

@keyframes shimmer {
    0% {
        left: -100%
    }

    to {
        left: 100%
    }
}

@keyframes shakeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px)
    }

    25% {
        transform: translateX(15px)
    }

    50% {
        transform: translateX(-10px)
    }

    75% {
        transform: translateX(5px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes errorPulse {
    0%,to {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

@keyframes shimmerError {
    0% {
        left: -100%
    }

    to {
        left: 100%
    }
}

@keyframes criticalFlash {
    0%,to {
        box-shadow: 0 8px 25px rgba(114,28,36,.4)
    }

    50% {
        box-shadow: 0 8px 25px rgba(220,53,69,.6)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

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

body {
    font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6
}

.container {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,.2)
}

.header {
    background: linear-gradient(135deg,#2c3e50 0,#34495e 100%);
    padding: 1.5rem 2rem;
    overflow: hidden
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: .3
}

.brand,.header,.nav a {
    position: relative
}

.brand {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,.3)
}

.brand::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,#3498db,#2ecc71);
    margin: .5rem auto;
    border-radius: 2px
}

.login-section,.nav {
    position: relative;
    z-index: 2
}

.nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem
}

.nav a {
    color: #ecf0f1;
    text-decoration: none;
    padding: .75rem 1.5rem;
    border-radius: 25px;
    transition: all .3s ease;
    font-weight: 500;
    overflow: hidden
}

.login-btn::before,.nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left .5s ease
}

.nav a::before {
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent)
}

.nav a:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,.2)
}

.login-btn:hover::before,.nav a:hover::before {
    left: 100%
}

.login-section {
    text-align: center
}

.login-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg,#3498db,#2ecc71);
    color: #fff;
    border: 0;
    padding: .75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(52,152,219,.3);
    position: relative;
    overflow: hidden
}

.login-btn::before {
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent)
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52,152,219,.4)
}

.main-content {
    padding: 3rem 2rem;
    text-align: center
}

.product-description {
    background: linear-gradient(135deg,#f8f9fa,#e9ecef);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05)
}

.product-description::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,rgba(52,152,219,.1)0,transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg,#2c3e50,#3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.product-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 2
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: all .3s ease;
    border: 1px solid rgba(0,0,0,.05)
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15)
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#3498db,#2ecc71);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(52,152,219,.3)
}

.feature h3,.footer-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600
}

.feature p {
    color: #7f8c8d;
    line-height: 1.6
}

.footer {
    background: linear-gradient(135deg,#2c3e50 0,#34495e 100%);
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footergrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footergrid)"/></svg>');
    opacity: .3
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2
}

.footer-section h4 {
    color: #fff
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem
}

.footer-section ul {
    list-style: none
}

.footer-bottom p,.footer-section ul li {
    margin-bottom: .5rem
}

.footer-section ul li a,.social-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color .3s ease
}

.footer-section ul li a:hover {
    color: #3498db
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    font-size: 1.2rem
}

.social-links a:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2
}

.footer-bottom p {
    color: #95a5a6
}

.footer-bottom p:last-child {
    font-size: .9rem;
    opacity: .8
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: all .3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden
}

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

.pricing-card.featured {
    border-color: #3498db;
    transform: scale(1.05)
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,#3498db,#2ecc71);
    color: #fff;
    text-align: center;
    padding: .5rem;
    font-size: .9rem;
    font-weight: 600
}

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

.plan-name,.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center
}

.plan-price {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: .5rem;
    line-height: 1
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top
}

.plan-period {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem
}

.plan-features li {
    padding: .75rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #5a6c7d;
    position: relative;
    padding-left: 2rem
}

.plan-features li:last-child,.results-table tr:last-child td {
    border-bottom: none
}

.plan-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.2rem
}

.plan-features li.not::before {
    content: '\2717';  /* ? */
    color: #e74c3c; 
}


.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border: 0;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.plan-button.free {
    background: linear-gradient(135deg,#95a5a6,#7f8c8d);
    color: #fff
}

.plan-button.starter {
    background: linear-gradient(135deg,#3498db,#2980b9);
    color: #fff
}

.plan-button.pro {
    background: linear-gradient(135deg,#e74c3c,#c0392b);
    color: #fff
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.2)
}

.login-button::before,.plan-button::before,.register-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
    transition: left .5s ease
}

.nav a.active::before,.plan-button:hover::before {
    left: 100%
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,#2c3e50,#3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto
}

@media (max-width:768px) {
    .container {
        width: 95%;
        margin-top: 1rem;
        border-radius: 15px
    }

    .header {
        padding: 1rem 1.5rem
    }

    .brand {
        font-size: 1.5rem
    }

    .nav {
        flex-direction: column;
        gap: .5rem;
        align-items: center
    }

    .nav a {
        padding: .5rem 1rem;
        font-size: .9rem
    }

    .main-content,.product-description {
        padding: 2rem 1.5rem
    }

    .product-title {
        font-size: 2rem
    }

    .product-subtitle {
        font-size: 1.1rem
    }

    .features,.pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .pricing-grid {
        max-width: 400px
    }

    .pricing-card.featured {
        transform: none
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px)
    }

    .plan-price {
        font-size: 2.5rem
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .pricing-grid {
        gap: 1.5rem
    }

    .pricing-card {
        padding: 2rem 1.5rem
    }
}

.register-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border: 1px solid rgba(0,0,0,.05)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c
}

.password-requirements {
    font-size: .8rem;
    color: #7f8c8d;
    margin-top: .5rem;
    line-height: 1.4
}

.password-match-indicator {
    font-size: .8rem;
    margin-top: .5rem;
    padding: .5rem;
    border-radius: 4px;
    display: none
}

.password-match-indicator.match {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block
}

.password-match-indicator.no-match {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block
}

.register-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,#3498db,#2ecc71);
    color: #fff;
    border: 0;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden
}

.register-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none
}

.login-button:hover:not(:disabled),.register-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52,152,219,.3)
}

.login-button:hover:not(:disabled)::before,.register-button:hover:not(:disabled)::before {
    left: 100%
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1
}

.login-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500
}

.login-link a:hover {
    text-decoration: underline
}

@media (max-width:768px) {
    .register-form {
        padding: 2rem 1.5rem;
        margin: 1rem
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .form-title {
        font-size: 1.75rem
    }
}

.login-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border: 1px solid rgba(0,0,0,.05)
}

.form-header {
    text-align: center;
    margin-bottom: 2rem
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: .5rem;
    background: linear-gradient(135deg,#2c3e50,#3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.form-subtitle {
    color: #7f8c8d;
    font-size: 1rem
}

.form-group,.story-content p {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: .9rem
}

.form-input {
    width: 100%;
    padding: .875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    background: #f8f9fa
}

.form-input:focus {
    outline: 0;
    border-color: #3498db;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52,152,219,.1)
}

.form-input:valid {
    border-color: #2ecc71
}

.form-options,.remember-me {
    display: flex;
    align-items: center
}

.form-options {
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: .9rem
}

.remember-me {
    gap: .5rem
}

.remember-me input[type=checkbox] {
    width: auto;
    margin: 0
}

.forgot-password,.register-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500
}

.forgot-password:hover,.register-link a:hover {
    text-decoration: underline
}

.login-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,#3498db,#2ecc71);
    color: #fff;
    border: 0;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden
}

.login-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
    color: #7f8c8d;
    font-size: .9rem
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    z-index: 1
}

.divider span {
    background: #fff;
    padding: 0 1rem;
    position: relative;
    z-index: 2
}

.google-login-button {
    width: 100%;
    padding: .875rem 1rem;
    background: #fff;
    color: #333;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.5rem
}

.google-login-button:hover {
    background: #f8f9fa;
    border-color: #3498db;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.google-icon {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>')no-repeat center;
    background-size: contain
}

.register-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1
}

.error-message,.success-message {
    padding: .75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: .9rem;
    display: none
}

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

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

@media (max-width:768px) {
    .login-form {
        padding: 2rem 1.5rem;
        margin: 1rem
    }

    .form-title {
        font-size: 1.75rem
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start
    }
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,#2c3e50,#3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about-subtitle {
    font-size: 1.4rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6
}

.story-section {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,.05)
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d
}

.story-content p:last-child {
    margin-bottom: 0
}

.highlight {
    background: linear-gradient(135deg,rgba(52,152,219,.1),rgba(46,204,113,.1));
    padding: .2rem .5rem;
    border-radius: 4px;
    font-weight: 600;
    color: #2c3e50
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
    margin-top: 3rem
}

.team-member {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
    transition: all .3s ease;
    border: 1px solid rgba(0,0,0,.05)
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12)
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg,#3498db,#2ecc71);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(52,152,219,.3)
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: .5rem
}

.member-role {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 1rem
}

.member-bio {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: .95rem
}

.values-section {
    background: linear-gradient(135deg,#f8f9fa,#e9ecef);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden
}

.values-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,rgba(52,152,219,.05)0,transparent 70%);
    animation: pulse 6s ease-in-out infinite
}

.values-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
    position: relative;
    z-index: 2
}

.value-item {
    text-align: center
}

.cta-button.primary,.value-icon {
    background: linear-gradient(135deg,#3498db,#2ecc71)
}

.cta-text {
    padding-top:2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(52,152,219,.3)
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: .5rem
}

.value-description {
    color: #7f8c8d;
    line-height: 1.6
}

.cta-section {
    background: linear-gradient(135deg,#2c3e50,#34495e);
    color: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctahero" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctahero)"/></svg>');
    opacity: .3
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: .9;
    position: relative;
    z-index: 2
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

.cta-button {
    padding: 1rem 2rem;
    border: 0;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block
}

.cta-button.primary {
    color: #fff
}

.cta-button.secondary {
    background: 0 0;
    color: #fff;
    border: 2px solid #fff
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.2)
}

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

    .about-subtitle {
        font-size: 1.2rem
    }

    .cta-section,.story-section,.values-section {
        padding: 2rem 1.5rem
    }

    .cta-title,.story-title,.values-title {
        font-size: 1.75rem
    }

    .team-grid,.values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

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

    .cta-button {
        width: 100%;
        max-width: 300px
    }
}

.page_msg {
    background: linear-gradient(135deg,#d4edda,#c3e6cb);
    color: #155724;
    padding: 1.5rem 4rem;
    border-radius: 12px;
    border: 2px solid #b8e6c1;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(21,87,36,.15);
    position: relative;
    overflow: hidden;
    animation: slideInFromTop .6s ease-out,successPulse 2s ease-in-out .8s
}

.page_msg::before {
    content: '\2713';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745
}

.page_msg::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
    animation: shimmer 2s ease-in-out .5s
}

.page_msg.with-icon {
    padding-left: 4rem
}

.page_msg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(21,87,36,.2);
    transition: all .3s ease
}

@media (max-width:768px) {
    .page_msg {
        margin: 1rem;
        padding: 1.25rem 1.5rem;
        font-size: 1rem
    }

    .page_msg.with-icon {
        padding-left: 3rem
    }

    .page_msg::before {
        left: 1rem;
        font-size: 1.25rem
    }
}

.page_msg.compact {
    padding: 1rem 1.5rem;
    font-size: .95rem;
    max-width: 400px
}

.page_msg.bold {
    background: linear-gradient(135deg,#28a745,#20c997);
    color: #fff;
    border-color: #1e7e34;
    box-shadow: 0 8px 25px rgba(40,167,69,.3)
}

.page_err.bold::before,.page_msg.bold::before {
    color: rgba(255,255,255,.9)
}

.page_err {
    background: linear-gradient(135deg,#f8d7da,#f5c6cb);
    color: #721c24;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #f1aeb5;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(114,28,36,.15);
    position: relative;
    overflow: hidden;
    animation: shakeIn .6s ease-out,errorPulse 2s ease-in-out .8s
}

.page_err::before {
    content: '\2716';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545
}

.page_err::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
    animation: shimmerError 2s ease-in-out .5s
}

.page_err.with-icon {
    padding-left: 4rem
}

.page_err:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114,28,36,.2);
    transition: all .3s ease
}

@media (max-width:768px) {
    .page_err {
        margin: 1rem;
        padding: 1.25rem 1.5rem;
        font-size: 1rem
    }

    .page_err.with-icon {
        padding-left: 3rem
    }

    .page_err::before {
        left: 1rem;
        font-size: 1.25rem
    }
}

.page_err.compact {
    padding: 1rem 1.5rem;
    font-size: .95rem;
    max-width: 400px
}

.page_err.bold {
    background: linear-gradient(135deg,#dc3545,#c82333);
    color: #fff;
    border-color: #bd2130;
    box-shadow: 0 8px 25px rgba(220,53,69,.3)
}

.page_err.warning {
    background: linear-gradient(135deg,#fff3cd,#ffeaa7);
    color: #856404;
    border-color: #ffd32a;
    box-shadow: 0 8px 25px rgba(133,100,4,.15)
}

.page_err.warning::before {
    content: '\2716';
    color: #fd7e14
}

.page_err.critical {
    background: linear-gradient(135deg,#721c24,#a71e2a);
    color: #f8d7da;
    border-color: #bd2130;
    box-shadow: 0 8px 25px rgba(114,28,36,.4);
    animation: shakeIn .6s ease-out,criticalFlash 1s ease-in-out .8s
}

.page_err.critical::before {
    color: #ff6b7a
}

.input_err {
    color: #721c24;
    background: #f8d7da;
    font-size: .85rem;
    margin-top: .45rem;
    border-radius: 4px;
    display: block;
    text-align: left;
    border: 1px solid #dc3545;
    padding: .25rem 1rem
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2
}

.welcome-text {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 500
}

.user-name {
    color: #fff;
    font-weight: 600;
    margin-left: .5rem
}

.logout-btn {
    background: rgba(231,76,60,.8);
    color: #fff;
    border: 0;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease
}

.logout-btn:hover {
    background: #e74c3c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231,76,60,.3)
}

.search-container {
    display: flex;
    margin: 0 auto
}

.search-input {
    flex: 1
}

.results-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05)
}

.results-header {
    background: linear-gradient(135deg,#f8f9fa,#e9ecef);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef
}

.results-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0
}

.results-count {
    color: #7f8c8d;
    font-size: .9rem;
    margin-top: .25rem
}

.results-table {
    width: 100%;
    border-collapse: collapse
}

.results-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
    font-size: .95rem
}

.results-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f3f4;
    color: #5a6c7d;
    vertical-align: top
}

.results-table th,.results-table tr:hover {
    background: #f8f9fa
}

.name-cell {
    font-weight: 500;
    color: #2c3e50
}

.phone-cell {
    font-family: "Courier New",monospace;
    color: #3498db
}

.address-cell {
    max-width: 300px;
    line-height: 1.4
}

.no-results {
    text-align: center;
    padding: 1rem 2rem;
    color: #7f8c8d
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: .5
}

.loading {
    text-align: center;
    padding: 3rem 2rem;
    color: #7f8c8d
}

.loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: .5rem
}

@media (max-width:768px) {
    .user-info {
        gap: 1rem;
        text-align: center
    }

    .search-container,.user-info {
        flex-direction: column
    }

    .search-btn {
        padding: 1rem
    }

    .results-table {
        font-size: .9rem
    }

    .results-table td,.results-table th {
        padding: .75rem 1rem
    }

    .address-cell {
        max-width: 200px;
        font-size: .85rem
    }@    media (max-width:600px) {
        .results-table,.results-table tbody,.results-table td,.results-table th,.results-table thead,.results-table tr{display: block
    }

    .results-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px
    }

    .results-table tr {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: #fff
    }

    .results-table td {
        border: 0;
        position: relative;
        padding: .5rem 0
    }

    .results-table td:before {
        content: attr(data-label)": ";
        font-weight: 600;
        color: #2c3e50
    }
}}

.nav a.active {
    background: rgba(255,255,255,.2);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.3)
}

.hero-image-container {
    margin: 3rem 6rem;
    position: relative;
    z-index: 2;
    text-align: center
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    transition: all .3s ease;
    border: 1px solid rgba(0,0,0,.05)
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15)
}

.register-now-btn {
    display: inline-block;
    background: linear-gradient(135deg,#e74c3c,#c0392b);
    color: #fff;
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 8px 25px rgba(231,76,60,.3);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

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

.register-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231,76,60,.4)
}

.register-now-btn:hover::before {
    left: 100%
}

.search-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,.05)
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center
}

.search-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    box-sizing: border-box
}

.search-input {
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    background: #f8f9fa;
    box-sizing: border-box; /* Add this line */
    width: 100%; /* Add this line to ensure full width */
}

.search-input:focus {
    outline: 0;
    border-color: #3498db;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52,152,219,.1)
}

.search-button-container {
    text-align: center;
    margin-bottom: 2rem
}

.search-btn {
    background: linear-gradient(135deg,#3498db,#2ecc71);
    color: #fff;
    border: 0;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52,152,219,.3)
}
