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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/background.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: white;
    background-attachment: fixed;
}

/* Ensure emoji support across all browsers */
* {
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'EmojiOne Color', 'Android Emoji', 'Arial', sans-serif;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
    -webkit-text-size-adjust: none !important;
    -moz-text-size-adjust: none !important;
    -ms-text-size-adjust: none !important;
    text-size-adjust: none !important;
    -webkit-font-feature-settings: "kern" 0 !important;
    font-feature-settings: "kern" 0 !important;
    -webkit-font-variant-ligatures: none !important;
    font-variant-ligatures: none !important;
}

/* Apple device specific fixes */
@supports (-webkit-appearance: none) {
    * {
        -webkit-text-stroke: 0 !important;
        -webkit-text-fill-color: inherit !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeSpeed !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
        text-align-last: auto !important;
        -webkit-text-align-last: auto !important;
    }
    
    p, span, div, label {
        -webkit-text-stroke: 0 !important;
        -webkit-text-fill-color: inherit !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
        text-align-last: auto !important;
        -webkit-text-align-last: auto !important;
    }
}

/* Force normal spacing on all text elements */
body, html, div, p, span, label, h1, h2, h3, h4, h5, h6 {
    word-spacing: normal !important;
    letter-spacing: normal !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
}

/* Allow text input in form fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    pointer-events: auto;
}

/* Nuclear option - force all inputs to have dark styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Prevent text selection highlighting */
.phone-group select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: none;
    text-shadow: none;
    background-color: transparent !important;
    color: white !important;
}

.phone-group select option {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-color: #333 !important;
    color: white !important;
}

/* Custom phone dropdown styling - removed duplicate */

.phone-group select option {
    background: #333 !important;
    color: white !important;
    padding: 8px;
    border: none;
    font-variant-emoji: emoji;
    -webkit-font-feature-settings: "emoji";
    font-feature-settings: "emoji";
}


.container {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 320px;
    width: 75%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    text-align: center;
    margin-bottom: 12px;
}

.logo-image {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

/* Additional responsive breakpoints for logo */
@media (max-width: 1024px) {
    .logo-image {
        max-width: 280px;
        width: 90%;
    }
}

@media (max-width: 600px) {
    .logo-image {
        max-width: 240px;
        width: 85%;
    }
}

.logo p {
    font-size: 1.2em;
    opacity: 0.8;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    line-height: 1.4;
    text-align: center !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeSpeed !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    font-size: 13px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Prevent form fields from turning white when filled */
.form-group input:focus,
.form-group input:active,
.form-group input:valid,
.form-group input:invalid,
.form-group input:not(:placeholder-shown),
.form-group select:focus,
.form-group select:active,
.form-group select:valid,
.form-group select:invalid {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Prevent autofill from changing background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1) inset !important;
    -webkit-text-fill-color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeSpeed !important;
}

.form-group select option {
    background: #333;
    color: white;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'EmojiOne Color', 'Android Emoji', sans-serif;
}

.phone-group {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    align-items: stretch;
    min-height: 48px;
}

.phone-group .select-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 48px;
    flex: 0 0 auto;
    width: 50px;
    min-width: 50px;
    max-width: 50px;
}

.phone-group .select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    font-size: 8px;
    z-index: 2;
    opacity: 0.7;
}

.phone-group select {
    flex: 0 0 auto;
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    height: 100% !important;
    min-height: 48px !important;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    background-image: none !important;
    padding: 7px 2px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 11px;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 14px;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'EmojiOne Color', 'Android Emoji', sans-serif;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    position: relative;
    z-index: 1;
    display: block;
    align-self: stretch;
}

.phone-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Ensure no internal borders or lines in select */
.phone-group select option {
    background: #333 !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Force select to match input exactly */
.phone-group select,
.phone-group select:focus,
.phone-group select:active,
.phone-group select:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    background-image: none !important;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    outline: none !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    height: 100% !important;
    min-height: 48px !important;
    width: 100% !important;
    display: block !important;
    align-self: stretch !important;
}

/* Prevent phone input from turning white when filled */
.phone-group input:focus,
.phone-group input:active,
.phone-group input:valid,
.phone-group input:invalid,
.phone-group input:not(:placeholder-shown) {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Prevent autofill from changing phone input background */
.phone-group input:-webkit-autofill,
.phone-group input:-webkit-autofill:hover,
.phone-group input:-webkit-autofill:focus,
.phone-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1) inset !important;
    -webkit-text-fill-color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.phone-group input {
    flex: 1;
    border: none !important;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    padding: 7px;
    color: white !important;
    font-size: 13px;
    outline: none !important;
    cursor: text;
    pointer-events: auto;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    min-width: 0;
    width: auto;
    display: block;
    visibility: visible;
}

.phone-group input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.phone-group input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.4;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeSpeed !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
}

.submit-btn {
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.submit-btn:hover {
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.social-links {
    text-align: center;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.footer {
    text-align: center !important;
    margin-top: 12px;
    font-size: 9px;
    opacity: 0.7;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeSpeed !important;
}

@media (max-width: 768px) {
    body {
        justify-content: center;
        padding-left: 0;
        padding: 20px 15px;
    }
    
    .container {
        padding: 12px 10px;
        margin: 6px;
        max-width: 100%;
    }
    
    .logo-image {
        max-width: 250px;
        width: 80%;
    }
    
    .phone-group {
        flex-direction: row;
        min-height: 48px;
        gap: 8px;
        align-items: stretch;
    }
    
    .phone-group select {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
        font-size: 12px;
        padding: 12px 2px;
        padding-right: 18px;
        flex-shrink: 0;
    }
    
    .phone-group .select-wrapper::after {
        right: 4px;
        font-size: 7px;
    }
    
    .phone-group input {
        font-size: 14px;
        padding: 12px 8px;
        flex: 1;
        min-width: 0;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
    
    .social-links a svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px 10px;
    }
    
    .container {
        padding: 10px 8px;
        margin: 4px;
    }
    
    .logo-image {
        max-width: 200px;
        width: 70%;
    }
    
    .phone-group select {
        width: 45px;
        min-width: 45px;
        max-width: 45px;
        font-size: 11px;
        padding: 12px 2px;
        padding-right: 16px;
    }
    
    .phone-group .select-wrapper::after {
        right: 3px;
        font-size: 6px;
    }
    
    .phone-group input {
        font-size: 14px;
        padding: 12px 8px;
    }
}

@media (max-width: 360px) {
    .logo-image {
        max-width: 180px;
        width: 60%;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    * {
        word-spacing: normal !important;
        letter-spacing: normal !important;
        text-align-last: auto !important;
        -webkit-text-align-last: auto !important;
        text-justify: none !important;
        -webkit-text-justify: none !important;
        text-rendering: geometricPrecision !important;
        -webkit-font-smoothing: subpixel-antialiased !important;
        font-smooth: never !important;
        -webkit-text-stroke: 0.01px transparent !important;
    }
    
    p, span, div, label {
        word-spacing: normal !important;
        letter-spacing: normal !important;
        text-align-last: auto !important;
        -webkit-text-align-last: auto !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-wrap: normal !important;
        text-rendering: geometricPrecision !important;
        -webkit-font-smoothing: subpixel-antialiased !important;
        font-smooth: never !important;
        -webkit-text-stroke: 0.01px transparent !important;
    }
}

/* Force specific text rendering for problematic elements */
.logo p,
.checkbox-group label {
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    font-smooth: never !important;
    -webkit-text-stroke: 0.01px transparent !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

/* Safari iOS specific media query */
@media screen and (-webkit-min-device-pixel-ratio: 1) {
    .logo p,
    .checkbox-group label {
        word-spacing: normal !important;
        letter-spacing: normal !important;
        text-align: left !important;
        text-justify: none !important;
        -webkit-text-justify: none !important;
        text-align-last: auto !important;
        -webkit-text-align-last: auto !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-wrap: normal !important;
        text-rendering: geometricPrecision !important;
        -webkit-font-smoothing: subpixel-antialiased !important;
        font-smooth: never !important;
        -webkit-text-stroke: 0.01px transparent !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        will-change: transform !important;
        -webkit-will-change: transform !important;
    }
}

/* Alternative approach - force text to be treated as single unit */
.logo p,
.checkbox-group label {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    font-smooth: never !important;
    -webkit-text-stroke: 0.01px transparent !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    will-change: transform !important;
    -webkit-will-change: transform !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* Force specific font family for problematic text */
.logo p,
.checkbox-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-variant: normal !important;
    font-stretch: normal !important;
    font-size-adjust: none !important;
    word-spacing: 0 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: auto !important;
    font-smooth: auto !important;
    -webkit-text-stroke: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    will-change: auto !important;
    -webkit-will-change: auto !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    text-indent: 0 !important;
    text-transform: none !important;
    text-decoration: none !important;
    text-shadow: none !important;
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    -ms-text-shadow: none !important;
}

/* Final attempt - force normal text rendering */
.logo p,
.checkbox-group label {
    white-space: normal !important;
    word-spacing: 0 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-justify: none !important;
    -webkit-text-justify: none !important;
    -moz-text-justify: none !important;
    -ms-text-justify: none !important;
    text-align-last: auto !important;
    -webkit-text-align-last: auto !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: auto !important;
    font-smooth: auto !important;
    -webkit-text-stroke: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    will-change: auto !important;
    -webkit-will-change: auto !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    text-indent: 0 !important;
    text-transform: none !important;
    text-decoration: none !important;
    text-shadow: none !important;
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    -ms-text-shadow: none !important;
    font-feature-settings: normal !important;
    -webkit-font-feature-settings: normal !important;
    font-variant-ligatures: none !important;
    -webkit-font-variant-ligatures: none !important;
    font-kerning: none !important;
    -webkit-font-kerning: none !important;
}

/* Success and Error Messages */
.success-message,
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.success-message .message-content {
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.error-message .message-content {
    background: rgba(244, 67, 54, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.success-message h3,
.error-message h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.success-message p,
.error-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .success-message,
    .error-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
